20 lines
334 B
C++
20 lines
334 B
C++
#include <iostream>
|
|
#include <iomanip>
|
|
|
|
using namespace std;
|
|
|
|
int main()
|
|
{
|
|
std::cout << "Price list of a restaurant"<<endl;
|
|
std::cout << setw(20)
|
|
<< setfill(' ')
|
|
<< left
|
|
<< "Cheese burger: "
|
|
<< " $"
|
|
<< setw(4)
|
|
<< setfill(' ')
|
|
<< right
|
|
<< "14"
|
|
<< endl;
|
|
}
|