Board logo

標題: [隨堂測驗] 字串處理 (四) - 字串中第n個字母為? [打印本頁]

作者: 陳品肇    時間: 2019-3-30 15:40     標題: [隨堂測驗] 字串處理 (四) - 字串中第n個字母為?

本帖最後由 陳品肇 於 2019-6-15 14:16 編輯

試做一執行畫面如下之程式.
[attach]6228[/attach]
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int s;
  7.     char str[20];
  8.     cout<<"輸入一字串: ";
  9.     cin.getline(str,20);
  10.     cout<<"抓出第幾個字元? ";
  11.     cin>>s;
  12.     cout<<"第"<<s<<"個字元為: "<<str[s-1]<<endl;
  13.     system("pause");
  14.     return 0;   
  15. }
複製代碼

作者: 陳柏霖    時間: 2019-3-30 16:26

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     int s;
  8.     char x[11];
  9.     cout<<"請輸入一段文字:";
  10.     cin.getline(x,11);
  11.     cout<<"想讓電腦幫你抓出第幾個字?";
  12.     cin>>s;
  13.     cout<<"字串的第"<<s<<"個字母為:"<<x[s-1]<<endl;
  14.     system("pause");
  15.     return 0;
  16. }
複製代碼

作者: 蔡季庭    時間: 2019-3-30 16:34

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int s;
  7.     char str[20];
  8.     cout<<"輸入一字串: ";
  9.     cin.getline(str,20);
  10.     cout<<"抓出第幾個字元? ";
  11.     cin>>s;
  12.     cout<<"第"<<s<<"個字元為: "<<str[s-1]<<endl;
  13.     system("pause");
  14.     return 0;   
  15. }
複製代碼

作者: 戴唯陞    時間: 2019-3-30 16:34

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     int x;
  8.     char str[50];
  9.     cout<<"輸入一字串"<<endl;   
  10.     cin.getline(str,50);   
  11.     cout<<"想讓電腦幫你抓第幾個字母"<<endl;
  12.     cin>>x;
  13.     cout<<"字串的第"<<x<<"字母是"<<x[str-1]<<endl;
  14.    
  15.    system("pause");
  16.    return 0;


  17. }
複製代碼

作者: 戴偉宸    時間: 2019-3-30 16:38

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a;
  7.     char str[50];
  8.     cout<<"輸入一字串";
  9.     cin.getline(str,50);
  10.     cout<<"找第幾個字??"<<str<<endl;
  11.     cin>>a;
  12.     cout<<"第"<<a<<"個字為"<<str[a-1]<<endl;   
  13.     system("pause");
  14.     return 0;
  15. }
複製代碼

作者: 蔡依宸    時間: 2019-3-30 16:52

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int tmp;
  7.     char str[10000];
  8.     cout<<"輸入一字串: ";
  9.     cin.getline(str,10000);
  10.      cout<<"想讓電腦幫你抓出第幾個字?";
  11.     cin>>tmp;
  12.     cout<<"字串的第"<<tmp<<"是:"<<str[tmp-1]<<endl;
  13.     system("pause");     
  14.     return 0;   
  15. }
複製代碼

作者: 戴安利    時間: 2019-4-3 20:41

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.    int x;
  8.    char str[50];
  9.    cout<<"輸入一字串: "<<endl;
  10.    cin.getline(str,50);
  11.    cout<<"請電腦幫抓地幾個字母? "<<endl;
  12.    cin>>x;
  13.    cout<<"字串的第"<<x<<"字母是"<<x[str-1]<<endl;
  14.    
  15.    system("pause");
  16.    return 0;
  17. }
複製代碼





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