返回列表 發帖

[隨堂測驗] 字串處理 (四) - 字串中第n個字母為?

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

試做一執行畫面如下之程式.
  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. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

返回列表