ผลต่างระหว่างรุ่นของ "Algo lab/notes/sorting 67"

จาก Theory Wiki
ไปยังการนำทาง ไปยังการค้นหา
(สร้างหน้าด้วย "More info will be up here soon.")
 
 
แถว 1: แถว 1:
More info will be up here soon.
+
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
}