cin.get()用於訪問字符數組。它包含空格字符。通常,發現空白時,帶有提取運算符(>>)的cin終止。但是,cin.get()讀取帶有空格的字符串。
用法:
cin.get(string_name, size);
範例1:
// C++ program to demonstrate cin.get()
#include <iostream>
using namespace std;
int main()
{
char name[25];
cin.get(name, 25);
cout << name;
return 0;
}
輸入:
Geeks for Geeks
輸出:
Geeks for Geeks
範例2:
// C++ program to demonstrate cin.get()
#include <iostream>
using namespace std;
int main()
{
char name[100];
cin.get(name, 3);
cout << name;
return 0;
}
輸入:
GFG
輸出:
GF
相關用法
- C++ iswprint()用法及代碼示例
- C++ iswgraph()用法及代碼示例
- C++ std::allocator()用法及代碼示例
- C++ ratio_equal()用法及代碼示例
- C++ negative_binomial_distribution用法及代碼示例
- C++ mbrtoc16()用法及代碼示例
- C++ mbrtoc32()用法及代碼示例
- C++ ios bad()用法及代碼示例
- C++ ios eof()用法及代碼示例
注:本文由純淨天空篩選整理自akshararajan26大神的英文原創作品 cin get() in C++ with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。