#include <iomanip>
#include <iostream>
using namespace std;
int main()
{
double price;
cin >> price;
cout << "Unit price: " << price <<"\n";
cout << "Quantity Price"<<"\n";
int quantity = 1;
std::cout << " " << quantity << " " << quantity * price <<"\n";
quantity = 12;
std::cout << " " << quantity << " " << quantity * price << ".00"<<"\n";
quantity = 100;
std::cout << " " << quantity << " " << quantity * price << ".00"<<"\n";
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: