標題:
字串處理 (五) - 英文大小寫轉換
[打印本頁]
作者:
王瑞喻
時間:
2020-4-9 20:59
標題:
字串處理 (五) - 英文大小寫轉換
本帖最後由 王瑞喻 於 2020-4-9 21:02 編輯
運用 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-4-10 20:42
#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-4-11 08:39
#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-4-11 11:02
#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-4-11 11:05
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char s[100];
cout<<"輸入一字串: ";
cin.getline(s,100);
cout<<"大寫: "<<strupr(s)<<endl;
cout<<"小寫: "<<strlwr(s)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳宇柏
時間:
2020-4-11 11:06
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
char str[50];
int n;
cout<<"請輸入一任意英文字串:";
cin.getline(str,50);
strupr(str);
cout<<"轉換為大寫:"<<str<<endl;
strlwr(str);
cout<<"轉換為小寫:"<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
曾宥程
時間:
2020-4-11 11:10
#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-4-11 11:13
#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-4-11 11:15
#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-4-18 13:58
#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-12-2 17:30
#include<cstdlib>
#include<string>
#include<iostream>
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://seed.istak.org.tw/)
Powered by Discuz! 7.2