Algo lab/notes/sorting 67
รุ่นแก้ไขเมื่อ 04:41, 2 กันยายน 2567 โดย Neizod (คุย | มีส่วนร่วม)
For reading an input of unknown length, you can use this template:
int x;
while (cin >> x) {
// do something with x
}
For reading an input of unknown length, you can use this template:
int x;
while (cin >> x) {
// do something with x
}