標題:
字串處理 (五) - 英文大小寫轉換
[打印本頁]
作者:
tonyh
時間:
2020-5-22 19:15
標題:
字串處理 (五) - 英文大小寫轉換
運用 strupr() 函式 與 strlwr() 函式進行英文大小寫轉換.
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
char str[50];
cout<<"輸入一字串: ";
cin.getline(str,50);
strupr(str); //string upper
cout<<"轉為大寫: "<<str<<endl;
strlwr(str); //string lower
cout<<"轉為小寫: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃宥華
時間:
2020-5-22 19:47
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
char o[50];
cout<<"請輸入一串英文字";
cin.getline(o,50);
cout<<"大寫"<<strupr(o)<<endl;
cout<<"小寫"<<strlwr(o)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
董宸佑
時間:
2020-5-22 19:47
#include<cstdlib>
#include<iostream>
#include<string>
using namespace std;
int main()
{
char str[0];
cout<<"請輸入一字串: ";
cin.getline(str,100);
cout<<"轉成大寫:"<<strupr(str)<<endl;
cout<<"轉成小寫:"<<strlwr(str)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林政瑜
時間:
2020-5-22 19:48
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
char AAA[50];
cout<<"請輸入一串英文字";
cin.getline(AAA,50);
cout<<"大寫"<<strupr(AAA)<<endl;
cout<<"小寫"<<strlwr(AAA)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
孫嘉駿
時間:
2020-5-22 19:48
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
char str[50];
cout<<"輸入一字串: ";
cin.getline(str,50)
cout<<"轉為大寫: "<<strupr(str)<<endl;
cout<<"轉為小寫: "<<strlwr(str)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳宥穎
時間:
2020-5-22 19:49
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
char s[100];
cin.getline(s,100);
cout<<"大寫"<<strupr(s)<<endl;
cout<<"小寫"<<strlwr(s)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李宇澤
時間:
2020-5-22 19:49
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
char str[50];
cout<<"輸入一字串: ";
cin.getline(str,50);
strupr(str);
cout<<"轉為大寫: "<<str<<endl;
strlwr(str);
cout<<"轉為小寫: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡忻霓
時間:
2020-5-22 19:51
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
char str[50];
cout<<"輸入一字串: ";
cin.getline(str,50);
strupr(str);
cout<<"轉為大寫: "<<str<<endl;
strlwr(str);
cout<<"轉為小寫: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃辰昊
時間:
2020-5-23 11:21
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
char str[50];
cout<<"輸入一字串: ";
cin.getline(str,50);
strupr(str);
cout<<"轉為大寫: "<<str<<endl;
strlwr(str);
cout<<"轉為小寫: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2