標題:
字串處理 (五) - 英文大小寫轉換
[打印本頁]
作者:
陳品肇
時間:
2019-3-30 16:36
標題:
字串處理 (五) - 英文大小寫轉換
運用 strupr() 函式 與 strlwr() 函式進行英文大小寫轉換.
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
char str[50];
cout<<"輸入一字串: ";
cin.getline(str,50);
cout<<"你剛輸入的字串是: "<<str<<endl;
strupr(str); //string upper
cout<<"轉換為大寫: "<<str<<endl;
strlwr(str); //string lower
cout<<"轉換為小寫: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳柏霖
時間:
2019-3-30 16:54
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
int s;
char x[11];
cout<<"請輸入一段英文字:";
cin.getline(x,11);
cout<<endl<<endl;
cout<<"大寫:"<<strupr(x)<<endl;
cout<<endl<<endl;
cout<<"小寫:"<<strlwr(x)<<endl;
cout<<"字串的第"<<s<<"個字母為:"<<x[s-1]<<endl;
system("pause");
return 0;
}
複製代碼
作者:
戴偉宸
時間:
2019-3-30 16:56
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
char str[50];
cout<<"輸入一字串";
cin.getline(str,50);
cout<<"你剛剛輸入的字串是:"<<str<<endl;
strupr(str);
cout<<"轉換為大寫:"<<str<<endl;
strlwr(str);
cout<<"轉換為小寫:"<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡季庭
時間:
2019-3-30 16:57
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
char str[50];
cout<<"輸入一字串: ";
cin.getline(str,50);
cout<<"你剛輸入的字串是: "<<str<<endl;
strupr(str);
cout<<"轉換為大寫: "<<str<<endl;
cout<<"+*****************+"<<endl;
strlwr(str);
cout<<"轉換為小寫: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡依宸
時間:
2019-3-30 16:58
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char str[1000];
cout<<"輸入一字串: ";
cin.getline(str,1000);
cout<<"你剛剛輸入的字串是:"<<str<<endl;
cout<<"大寫:"<<strupr(str)<<endl;
cout<<"小寫:"<<strlwr(str)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
戴唯陞
時間:
2019-3-30 16:59
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
char str[50];
cout<<"輸入一字串"<<endl;
cin.getline(str,50);
cout<<"你剛剛輸入的字串轉換為大寫是"<<strupr(str)<<endl;
cout<<"你剛剛輸入的字串轉換為小寫是"<<strlwr(str)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
戴安利
時間:
2019-4-3 20:45
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
char str[50];
cout<<"輸入一字串: ";
cin.getline(str,50);
cout<<"你剛剛輸入的字串是: "<<str<<endl;
strupr(str);
cout<<"轉換為大寫: "<<str<<endl;
strlwr(str);
cout<<"轉換為小寫: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2