ผลต่างระหว่างรุ่นของ "Ske algo lab/read input"

จาก Theory Wiki
ไปยังการนำทาง ไปยังการค้นหา
(หน้าที่ถูกสร้างด้วย ': ''This is part of Ske algo lab.'' == Detecting EOF for cin == This is the template for 3n+1. == Detecting EOF for getline == ...')
 
แถว 9: แถว 9:
  
 
You can use <tt>std::getline</tt> to read the whole line.  The following is the template for TEX quotes.
 
You can use <tt>std::getline</tt> to read the whole line.  The following is the template for TEX quotes.
 +
 +
<syntaxhighlight lang="cpp">
 +
#include <iostream>
 +
#include <string>
 +
 +
using namespace std;
 +
 +
int main()
 +
{
 +
  string st;
 +
  while(getline(cin, st)) {
 +
    // ...
 +
  }
 +
}
 +
</syntaxhighlight>

รุ่นแก้ไขเมื่อ 02:50, 23 สิงหาคม 2562

This is part of Ske algo lab.

Detecting EOF for cin

This is the template for 3n+1.


Detecting EOF for getline

You can use std::getline to read the whole line. The following is the template for TEX quotes.

#include <iostream>
#include <string>

using namespace std;

int main()
{
  string st;
  while(getline(cin, st)) {
    // ...
  }
}