標題:
字串處理 (五) - 英文大小寫轉換
[打印本頁]
作者:
陳品肇
時間:
2019-6-15 12:12
標題:
字串處理 (五) - 英文大小寫轉換
運用 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-6-15 14:59
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
char s[50];
cout<<"輸入一字串:";
cin.getline(s,50);
cout<<"你剛輸入的字串是:"<<s<<endl;
strupr(s);
cout<<"轉換為大寫:"<<s<<endl;
strlwr(s);
cout<<"轉換為小寫: "<<s<<endl;
system("pause");
return 0;
}
複製代碼
作者:
湯郡一
時間:
2019-6-15 15:01
#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-6-15 15:02
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
char a[50];
cout<<"輸入字串:";
cin.getline(a,40);
cout<<"你輸入的是:"<<a<<endl;
strupr(a);
cout<<"大寫:"<<a<<endl;
strlwr(a);
cout<<"小寫:"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
洪寬瀧
時間:
2019-6-15 15:02
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
char jeb[50];
cout<<"請輸入任意一字串"<<endl;
cin.getline(jeb,30);
cout<<"你剛輸入的字串是: "<<jeb<<endl;
strupr(jeb);
cout<<"轉換為大寫: "<<jeb<<endl;
strlwr(jeb);
cout<<"轉換為小寫: "<<jeb<<endl;
system("pause");
return 0;
}
複製代碼
作者:
曲書辰
時間:
2019-6-15 15:03
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
char a[50];
cout<<"請輸入一字串 ";
cin.getline(a,50);
cout<<"你剛輸入的字串是"<<a<<endl;
strupr(a);
cout<<"轉換為大寫"<<a<<endl;
strlwr(a);
cout<<"轉換為小寫"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳孟修
時間:
2019-6-15 15:05
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
char s[50];
cout<<"輸入一字串: ";
cin.getline(s,50);
cout<<"你剛輸入的字串是: "<<s<<endl;
strupr(s);
cout<<"轉換為大寫: "<<s<<endl;
strlwr(s);
cout<<"轉換為小寫: "<<s<<endl;
system("pause");
return 0;
}
複製代碼
作者:
王瑞喻
時間:
2019-6-15 15:13
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
char s[50];
cout<<"輸入一字串:";
cin.getline(s,50);
cout<<"你剛輸入的字串是:"<<s<<endl;
strupr(s);
cout<<"轉換為大寫:"<<s<<endl;
strlwr(s);
cout<<"轉換為小寫:"<<s<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2