標題:
字串處理 (三) - 字串輸入 2
[打印本頁]
作者:
鄭繼威
時間:
2023-3-8 03:20
標題:
字串處理 (三) - 字串輸入 2
本帖最後由 鄭繼威 於 2023-3-8 20:32 編輯
學到這裡已經會3種輸入的方法了
string str;
cin>>str
一開始學的
可以輸入
一個
數字或字元
當接收一個字串,遇
“空格”、“TAB”、“ENTER”
就結束
ex:只能讀單字
getline(cin,str)
上次學到的
接收一個字串,可以接收
空格
並輸出
ex:可以讀單字、句子
cin.getline(str,len,c)
這次新學到的
跟上一個
一樣
接收一個字串,可以接收
空格
並輸出
ex:一樣可以讀單字、句子
可以控制要
接幾個字元(int len)
及
斷句(char c)
注意他放到的變數(str)要是
字元陣列
(它是字元陣列的方法)
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char str[50];
cout<<"請輸入一字串(包含空白): ";
cin.getline(str,50); //接收50個字元到str中,其中最後一個為’\0’,所以只看到49個字元輸出;
cout<<"您剛輸入的字串是: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林劭澧
時間:
2023-3-8 20:32
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char str[50];
cout<<"請輸入一字串(包含空白): ";
cin.getline(str,50);
cout<<"您剛輸入的字串是: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃裕恩
時間:
2023-3-8 20:34
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char str[50];
cout<<"請輸入一字串(包含空白): ";
cin.getline(str,50);
cout<<"您剛輸入的字串是: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李彣
時間:
2023-3-8 20:36
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char str[50];
cout<<"請輸入一字串(包含空白):";
cin.getline(str,50);
cout<<"您剛輸入的字串是:"<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林劭杰
時間:
2023-3-8 20:44
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char str[50];
cout<<"請輸入一字串(包含空白):";
cin.getline(str,50);
cout<<"您剛輸入的字串是:"<<str<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2