Files
marissa.sam/task1/_ref/Chapter02/helloworld.cpp
louiscklaw bfa5b5ff46 update,
2025-02-01 02:04:02 +08:00

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;
}