標題:
字串處理 (二) - 字串輸入 1
[打印本頁]
作者:
tonyh
時間:
2020-5-15 19:15
標題:
字串處理 (二) - 字串輸入 1
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入一字串(包含空白): ";
getline(cin,str);
cout<<"您剛輸入的字串是: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
孫嘉駿
時間:
2020-5-15 19:36
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str;
cout<<"請輸入一字串(包含空白): ";
getline(cin,str);
cout<<"您剛輸入的字串是: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林政瑜
時間:
2020-5-15 19:36
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入一字串(包含空白): ";
getline(cin,str);
cout<<"您剛輸入的字串是: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃辰昊
時間:
2020-5-15 19:37
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str;
cout<<"請輸入一字串(包含空白): ";
getline(cin,str);
cout<<"你剛輸入的字串是: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃宥華
時間:
2020-5-15 19:37
本帖最後由 黃宥華 於 2020-5-15 19:38 編輯
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string p;
cout<<"輸入有空白的字串";
getline(cin,p);
cout<<"你輸入的是"<<p;
system("pause");
return 0;
}
複製代碼
作者:
蔡忻霓
時間:
2020-5-15 19:39
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入一字串(包含空白): ";
getline(cin,str);
cout<<"您剛輸入的字串是: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳宥穎
時間:
2020-5-15 19:39
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入一字串(包含空白): ";
getline(cin,str);
cout<<"您剛輸入的字串是: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
董宸佑
時間:
2020-5-15 19:40
#include<cstdlib>
#include<iostream>
#include<string>
using namespace std;
int main()
{
string noname;
cout<<"請輸入一字串(包含空白): ";
getline(cin,noname);
cout<<"您剛輸入的字串是: "<<noname<<endl<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林政瑜
時間:
2020-5-15 20:10
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
int n;
string str;
cout<<"請輸入一字串: ";
getline(cin,str);
cout<<"第幾字: ";
cin>>n;
n=n-1;
cout<<str[n];
system("pause");
return 0;
}
複製代碼
作者:
孫嘉駿
時間:
2020-5-15 20:11
本帖最後由 孫嘉駿 於 2020-5-15 20:30 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str;
int x;
cout<<"請輸入一任意英文字串: ";
getline(cin,str);
cout<<"想要電腦幫你抓出第幾個字? ";
cin>>x;
cout<<"字串的第"<<x<<"個字母為: "<<str[x-1]<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2