標題:
字串處理 (五) - 英文大小寫轉換
[打印本頁]
作者:
tonyh
時間:
2018-8-6 20:27
標題:
字串處理 (五) - 英文大小寫轉換
運用 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;
}
複製代碼
作者:
曾堂桂
時間:
2018-8-6 20:43
#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;
}
複製代碼
作者:
李沛昂
時間:
2018-8-6 20:43
#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;
}
複製代碼
作者:
啓銓
時間:
2018-8-6 20:46
#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;
}
複製代碼
作者:
洪翊庭
時間:
2018-8-6 20:46
#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;
}
複製代碼
作者:
黃宇瑄
時間:
2018-8-6 20:47
#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;
}
複製代碼
作者:
黃宇綸
時間:
2018-8-6 20:47
#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;
}
複製代碼
作者:
洪翊展
時間:
2018-8-6 20:49
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
char str[50];
cout<<"輸入字串"<<endl;
cin.getline(str,50);
strupr(str);
cout<<"大寫"<<str<<endl;
strlwr(str);
cout<<"小寫"<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
戴嘉禾
時間:
2018-8-9 20:50
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2