Board logo

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

作者: tonyh    時間: 2014-7-12 17:07     標題: [隨堂測驗] 字串處理 (四) - 字串中第n個字母為?

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

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

[attach]925[/attach]
  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. }
複製代碼

作者: 林宇翔    時間: 2014-7-12 17:12

此帖僅作者可見
作者: 李允軒    時間: 2014-7-12 17:15

此帖僅作者可見
作者: 張峻瑋    時間: 2014-7-12 17:16

此帖僅作者可見
作者: 張郁庭    時間: 2014-7-12 17:16

此帖僅作者可見
作者: 張彥承    時間: 2014-7-12 17:29

此帖僅作者可見
作者: 周雍程    時間: 2014-7-12 17:35

此帖僅作者可見
作者: 劉得旗    時間: 2014-8-7 16:13

此帖僅作者可見




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