1. 程式人生 > >125.C++輸入小結

125.C++輸入小結

當前 ostream names 結束 nbsp mit spa limits man

 1 #include <iostream>
 2 #include <iomanip>
 3 #include <cstring>
 4 #include <cstdlib>
 5 using namespace std;
 6 
 7 void main()
 8 {
 9 
10     /*char ch1, ch2, ch3;
11     cin.get(ch1).get(ch2).get(ch3);
12     cout.put(ch1).put(ch2);*/
13 
14     //char ch[20] = { 0 };
15     ///
/忽略一個字符 16 //cin.ignore(); 17 //在讀完的前提下,從當前位置一直到#結束這段字符都忽略了,最大長度是1024 18 //cin.ignore(1024, ‘#‘); 19 //設置最大極限 20 //cin.ignore(numeric_limits<streamsize>::max(), ‘#‘); 21 ////從某個地址寫入20個字節的長度,預留一個‘\0 22 //cin.get(ch,20); 23 //cout << ch << endl; 24 25 char ch[30]{ 0 }; 26 //
從指定字符讀取30個字符遇到s終止 27 cin.get(ch, 30, s); 28 cout << ch << endl; 29 system("pause"); 30 }

125.C++輸入小結