design a flowchart from an algorithm

Write a C++ program that asks for the number of units sold and computes the total cost of the purchase.

Write a C++ program that asks for the number of units sold and computes the total cost of the purchase.

Write a C++ program that asks for the number of units sold and computes the total cost of the purchase. Object: A software company sells a package that retails for $99. Quantity discounts are given according to the following table: Quantity Discount : 10-19 20% 20-49 30% 50-99 40% 100 or more 50% Write a …

Write a C++ program that asks for the number of units sold and computes the total cost of the purchase. Read More »

Write a program library management system menu driven program that depicts the working of a library

Write a program library management system menu driven program that depicts the working of a library

Write a Program Library Management System Object: Write a menu driven program that depicts the working of a library. The menu options should be: a) Add book information b) Display book information c) List all books of given author d) List the title of specified book e) List the count of books in the library …

Write a program library management system menu driven program that depicts the working of a library Read More »

Write a program that take four floating numbers from keyboard and prints their sum, product and average.

Write a program that take four floating numbers from keyboard and prints their sum, product and average.

Write a program that takes four floating numbers from the keyboard and prints their sum, product, and average. Code: #include<iostream> #include<conio.h> using namespace std; void main() {        float n1,n2,n3,n4,sum,pro,avg;        cout<<“Please Enter Any Four Numbers.\n\n”;        cin>>n1>>n2>>n3>>n4;        sum= n1+n2+n3+n4;        pro= n1*n2*n3*n4;        avg= (n1+n2+n3+n4)/4;        cout<<“\nAddition of Four Number is: “<<sum<<endl;        …

Write a program that take four floating numbers from keyboard and prints their sum, product and average. Read More »