標題:
[隨堂測驗] 字串處理 (四) - 字串中第n個字母為?
[打印本頁]
作者:
陳品肇
時間:
2019-3-30 15:40
標題:
[隨堂測驗] 字串處理 (四) - 字串中第n個字母為?
本帖最後由 陳品肇 於 2019-6-15 14:16 編輯
試做一執行畫面如下之程式.
[attach]6228[/attach]
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int s;
char str[20];
cout<<"輸入一字串: ";
cin.getline(str,20);
cout<<"抓出第幾個字元? ";
cin>>s;
cout<<"第"<<s<<"個字元為: "<<str[s-1]<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳柏霖
時間:
2019-3-30 16:26
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
int s;
char x[11];
cout<<"請輸入一段文字:";
cin.getline(x,11);
cout<<"想讓電腦幫你抓出第幾個字?";
cin>>s;
cout<<"字串的第"<<s<<"個字母為:"<<x[s-1]<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡季庭
時間:
2019-3-30 16:34
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int s;
char str[20];
cout<<"輸入一字串: ";
cin.getline(str,20);
cout<<"抓出第幾個字元? ";
cin>>s;
cout<<"第"<<s<<"個字元為: "<<str[s-1]<<endl;
system("pause");
return 0;
}
複製代碼
作者:
戴唯陞
時間:
2019-3-30 16:34
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
int x;
char str[50];
cout<<"輸入一字串"<<endl;
cin.getline(str,50);
cout<<"想讓電腦幫你抓第幾個字母"<<endl;
cin>>x;
cout<<"字串的第"<<x<<"字母是"<<x[str-1]<<endl;
system("pause");
return 0;
}
複製代碼
作者:
戴偉宸
時間:
2019-3-30 16:38
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
char str[50];
cout<<"輸入一字串";
cin.getline(str,50);
cout<<"找第幾個字??"<<str<<endl;
cin>>a;
cout<<"第"<<a<<"個字為"<<str[a-1]<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡依宸
時間:
2019-3-30 16:52
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int tmp;
char str[10000];
cout<<"輸入一字串: ";
cin.getline(str,10000);
cout<<"想讓電腦幫你抓出第幾個字?";
cin>>tmp;
cout<<"字串的第"<<tmp<<"是:"<<str[tmp-1]<<endl;
system("pause");
return 0;
}
複製代碼
作者:
戴安利
時間:
2019-4-3 20:41
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
int x;
char str[50];
cout<<"輸入一字串: "<<endl;
cin.getline(str,50);
cout<<"請電腦幫抓地幾個字母? "<<endl;
cin>>x;
cout<<"字串的第"<<x<<"字母是"<<x[str-1]<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2