Write a program to accept item price and quantity from a user and display the total value of the item
#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;
}