標題:
[隨堂測驗] 字串處理 (四) - 字串中第n個字母為?
[打印本頁]
作者:
tonyh
時間:
2014-7-12 17:07
標題:
[隨堂測驗] 字串處理 (四) - 字串中第n個字母為?
本帖最後由 tonyh 於 2014-7-26 17:46 編輯
試做一執行畫面如下之程式.
[attach]925[/attach]
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
int a;
cout<<"請輸入一任意英文字串: ";
getline(cin,str);
cout<<"想讓電腦幫你抓出第幾個字母: ";
cin>>a;
cout<<str[a-1]<<endl;
system("pause");
return 0;
}
複製代碼
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char str[50];
int a;
cout<<"請輸入一任意英文字串: ";
cin.getline(str,50);
cout<<"想讓電腦幫你抓出第幾個字母: ";
cin>>a;
cout<<str[a-1]<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林宇翔
時間:
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