ผลต่างระหว่างรุ่นของ "Algo lab/notes/sorting 67"
ไปยังการนำทาง
ไปยังการค้นหา
Jittat (คุย | มีส่วนร่วม) (สร้างหน้าด้วย "More info will be up here soon.") |
Neizod (คุย | มีส่วนร่วม) |
||
| แถว 1: | แถว 1: | ||
| − | + | For reading an input of unknown length, you can use this template: | |
| + | |||
| + | <syntaxhighlight lang="cpp">int x; | ||
| + | while (cin >> x) { | ||
| + | // do something with x | ||
| + | }</syntaxhighlight> | ||
รุ่นแก้ไขปัจจุบันเมื่อ 04:41, 2 กันยายน 2567
For reading an input of unknown length, you can use this template:
int x;
while (cin >> x) {
// do something with x
}