Board logo

標題: 字串處理 (二) - 字串輸入 1 [打印本頁]

作者: tonyh    時間: 2020-5-15 19:15     標題: 字串處理 (二) - 字串輸入 1

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     string str;
  8.     cout<<"請輸入一字串(包含空白): ";
  9.     getline(cin,str);
  10.     cout<<"您剛輸入的字串是: "<<str<<endl;
  11.     system("pause");
  12.     return 0;   
  13. }
複製代碼

作者: 孫嘉駿    時間: 2020-5-15 19:36

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string str;
  7.      cout<<"請輸入一字串(包含空白): ";
  8.     getline(cin,str);
  9.     cout<<"您剛輸入的字串是: "<<str<<endl;
  10.     system("pause");
  11.     return 0;   
  12. }
複製代碼

作者: 林政瑜    時間: 2020-5-15 19:36

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     string str;
  8.     cout<<"請輸入一字串(包含空白): ";
  9.     getline(cin,str);
  10.     cout<<"您剛輸入的字串是: "<<str<<endl;
  11.     system("pause");
  12.     return 0;   
  13. }
複製代碼

作者: 黃辰昊    時間: 2020-5-15 19:37

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string str;
  7.     cout<<"請輸入一字串(包含空白): ";
  8.     getline(cin,str);
  9.     cout<<"你剛輸入的字串是: "<<str<<endl;
  10.     system("pause");
  11.     return 0;   
  12. }
複製代碼

作者: 黃宥華    時間: 2020-5-15 19:37

本帖最後由 黃宥華 於 2020-5-15 19:38 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     string p;
  8.     cout<<"輸入有空白的字串";
  9.     getline(cin,p);
  10.     cout<<"你輸入的是"<<p;  
  11.     system("pause");
  12.     return 0;   
  13. }
複製代碼

作者: 蔡忻霓    時間: 2020-5-15 19:39

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     string str;
  8.     cout<<"請輸入一字串(包含空白): ";
  9.     getline(cin,str);
  10.     cout<<"您剛輸入的字串是: "<<str<<endl;
  11.     system("pause");
  12.     return 0;   
  13. }
複製代碼

作者: 陳宥穎    時間: 2020-5-15 19:39

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     string str;
  8.     cout<<"請輸入一字串(包含空白): ";
  9.     getline(cin,str);
  10.     cout<<"您剛輸入的字串是: "<<str<<endl;
  11.     system("pause");
  12.     return 0;   
  13. }
複製代碼

作者: 董宸佑    時間: 2020-5-15 19:40

  1. #include<cstdlib>
  2. #include<iostream>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     string noname;
  8.     cout<<"請輸入一字串(包含空白): ";
  9.     getline(cin,noname);
  10.     cout<<"您剛輸入的字串是: "<<noname<<endl<<endl;
  11.     system("pause");
  12.     return 0;   
  13. }
複製代碼

作者: 林政瑜    時間: 2020-5-15 20:10

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     int n;
  8.     string str;
  9.     cout<<"請輸入一字串: ";
  10.     getline(cin,str);
  11.     cout<<"第幾字: ";
  12.     cin>>n;
  13.     n=n-1;
  14.     cout<<str[n];
  15.     system("pause");
  16.     return 0;   
  17. }
複製代碼

作者: 孫嘉駿    時間: 2020-5-15 20:11

本帖最後由 孫嘉駿 於 2020-5-15 20:30 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string str;
  7.     int x;
  8.     cout<<"請輸入一任意英文字串: ";
  9.     getline(cin,str);
  10.     cout<<"想要電腦幫你抓出第幾個字? ";
  11.     cin>>x;
  12.     cout<<"字串的第"<<x<<"個字母為: "<<str[x-1]<<endl;
  13.     system("pause");
  14.     return 0;   
  15. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2