返回列表 發帖

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

本帖最後由 tonyh 於 2014-7-26 17:46 編輯

試做一執行畫面如下之程式.

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     string str;
  8.     int a;
  9.     cout<<"請輸入一任意英文字串: ";
  10.     getline(cin,str);
  11.     cout<<"想讓電腦幫你抓出第幾個字母: ";
  12.     cin>>a;
  13.     cout<<str[a-1]<<endl;   
  14.     system("pause");
  15.     return 0;
  16. }
複製代碼
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     char str[50];
  7.     int a;
  8.     cout<<"請輸入一任意英文字串: ";
  9.     cin.getline(str,50);
  10.     cout<<"想讓電腦幫你抓出第幾個字母: ";
  11.     cin>>a;
  12.     cout<<str[a-1]<<endl;   
  13.     system("pause");
  14.     return 0;
  15. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表