標題:
字串的處理 - 第n個字母為?
[打印本頁]
作者:
tonyh
時間:
2012-4-21 16:49
標題:
字串的處理 - 第n個字母為?
本帖最後由 tonyh 於 2012-4-21 16:59 編輯
自行輸入英文自串, 再讓電腦找出字串中第n個字母為何?
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n;
char string[50]; //宣告一字串陣列
cout<<"請任意輸入英文字串(50字內): ";
cin.getline(string,50);
cout<<"想讓電腦幫你抓出第幾個字母? ";
cin>>n;
cout<<"字串中第 "<<n<<" 個字母為 "<<string[n-1]<<endl;
system("pause");
return 0;
}
複製代碼
作者:
t2364705
時間:
2012-4-21 17:01
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n;
char string[100]; //宣告一字串陣列 。
cout<<"請輸入要轉換的英文字串(100字內): ";
cin.getline(string,100); //抓取字串,其常度為100字元。
cout<<"想讓電腦幫你抓出第幾的字母? "<<endl;
cin>>n;
cout<<"字母中第"<<n<<"個字母為"<<string[n-1]<<endl;
system("pause");
return 0;
}
複製代碼
作者:
t3742238
時間:
2012-4-21 17:01
#include<iostream>
#include<csdileb>
using namespace std;
int main()
{
int n;
char string[50];
cout<<"請輸入虛轉換的字串(50字內)";
cin.getline(string,50);
cout<<"想讓電腦幫你抓出第幾個字母?";
cin>>n;
cout<<"字串中第"<<n<<"個字母為:"<<string[n-1]<<endl;
system("pause");
return 0;
}
複製代碼
作者:
劉漢文
時間:
2012-4-21 17:02
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int n;
char string[50];
cout<<"請輸入要轉換的英文字串(50字內:) ";
cin.getline(string,50);
cout<<"想讓電腦幫你抓出第幾個字母? :";
cin>>n;
cout<<"字串中第"<<n<<"個字母為"<<string[n-1]<<endl;
system("pause");
return 0;
}
複製代碼
作者:
尤泓鈞
時間:
2012-4-21 17:04
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n;
char string[50];
cout<<"請輸入要轉換的英文字串(50字內)";
cin.getline(string,50);
cout<<"想電腦幫你抓處第幾個英文字母呢??";
cin>>n;
cout<<"字母中的"<<n<<"個字母為"<<string[n-1]<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡昀佑
時間:
2012-4-21 17:05
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n;
char string[50];
cout<<"請輸入要轉換的英文字(50字以內)"<<endl;
cin.getline(string,50);
cout<<"請輸入在字串中要抓出的英文字"<<endl;
cin>>n;
cout<<"第"<<n<<"個字是"<<string[n-1]<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2