This commit is contained in:
louiscklaw
2025-02-01 02:04:02 +08:00
parent 8bf2589af5
commit bfa5b5ff46
79 changed files with 4051 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;
}