返回列表 發帖

字串處理 (二) - 字串輸入 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. }
複製代碼

  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. }
複製代碼

TOP

  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. }
複製代碼

TOP

  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. }
複製代碼
Huang chenhao

TOP

本帖最後由 黃宥華 於 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. }
複製代碼
hahahahahahahaha

TOP

  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. }
複製代碼

TOP

  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. }
複製代碼

TOP

  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. }
複製代碼

TOP

  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. }
複製代碼

TOP

本帖最後由 孫嘉駿 於 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. }
複製代碼

TOP

返回列表