標題:
字串處理 (三) - 字串輸入 2
[打印本頁]
作者:
鄭繼威
時間:
2023-5-6 12:10
標題:
字串處理 (三) - 字串輸入 2
本帖最後由 鄭繼威 於 2023-5-6 15:25 編輯
學到這裡已經會3種輸入的方法了
string str;
cin>>str
一開始學的
可以輸入
一個
數字或字串
當接收一個字串,遇
“空格”、“TAB”、“ENTER”
就結束
ex:只能讀單字
getline(cin,str)
上次學到的
接收一個字串,可以接收
空格
並輸出
ex:可以讀單字、句子
cin.getline(str,len,c)
這次新學到的
跟上一個
一樣
接收一個字串,可以接收
空格
並輸出
ex:一樣可以讀單字、句子
可以控制要
接幾個字元(int len)
及
斷句(char c)
(optional)
注意他放到的變數(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-5-6 15:08
#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-5-6 15:15
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char str[50];
cout<<"請輸入一字串(包含空白): ";
cin.getline(str,50);
cout<<"您剛輸入的字串是: "<<str<<endl;
system("pause");
return 0;
system("pause");
return 0;
}
複製代碼
作者:
陳牧謙
時間:
2023-5-6 15:16
#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-5-6 15:17
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char str[50];
cout<<"請輸入一字串(需要你的空格:D):";
cin.getline(str,10);
cout<<"您剛輸入的字串是:"<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林雋喆
時間:
2023-5-6 15:17
#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-5-6 15:18
#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-5-6 15:18
6
作者:
宜儒
時間:
2023-5-13 00:28
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char str[50];
cout<<"請輸入一字串(包含空白): ";
cin.getline(str,50); //放入的str須為字元陣列的型態 cin.getline(name,取幾個,遇到什麼字元時斷句)
//接收50個字元到str中,其中最後一個為’\0’,所以只看到49個字元輸出;
cout<<"您剛輸入的字串是: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
翁川祐
時間:
2023-5-13 10:57
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char str[50];
cout<<"請輸入一字串(包含空白): ";
cin.getline(str,50,'g');
cout<<"您剛輸入的字串是: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2