Answer to Question #25027 in C++ for cwojo

Question #25027
Write a program to accept item price and quantity from a user and display the total value of the item
1
Expert's answer
2013-02-26T10:06:01-0500
#include <iostream>

#include <conio.h>

using namespace std;

int main()
{
float itemPrice;
int itemCount;

cout << "Enter item price: ";
cin >> itemPrice;

cout << "Enter the number of items: ";
cin >> itemCount;

cout << endl;
cout << "The total value of the items is: "
<< itemCount * itemPrice << endl;

_getch();
return 0;
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
APPROVED BY CLIENTS