This commit is contained in:
louiscklaw
2025-01-31 21:27:38 +08:00
parent 8cce226ca9
commit ca0eb416dd
90 changed files with 4082 additions and 0 deletions

Binary file not shown.

View File

@@ -0,0 +1,19 @@
#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;
}