標題:
字串處理 (五) - 英文大小寫轉換
[打印本頁]
作者:
tonyh
時間:
2014-7-12 16:56
標題:
字串處理 (五) - 英文大小寫轉換
本帖最後由 tonyh 於 2014-7-26 17:47 編輯
運用 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;
}
複製代碼
作者:
張彥承
時間:
2014-7-12 16:56
#include<iostream>
#include<cstdlib>
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;
}
複製代碼
作者:
周雍程
時間:
2014-7-12 16:56
#include<iostream>
#include<cstdlib>
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;
}
複製代碼
作者:
張峻瑋
時間:
2014-7-12 16:56
#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;
}
複製代碼
作者:
張郁庭
時間:
2014-7-12 16:56
#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;
}
複製代碼
作者:
李允軒
時間:
2014-7-12 16:57
#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;
}
複製代碼
作者:
林宇翔
時間:
2014-7-12 17:36
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char mm[50];
cout<<"輸入一個字串: ";
cin.getline(mm,50);
cout<<"你輸入的是.... "<<mm<<endl;
strupr(mm);
cout<<"轉換為大寫... "<<mm<<endl;
strlwr(mm);
cout<<"轉換為小寫 "<<mm<<endl;
system("pause");
return 0;
}
複製代碼
作者:
劉得旗
時間:
2014-8-7 16:35
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char str[100];
cout<<"輸入字串:"<<endl;
cin.getline(str,100);
cout<<"原始"<<str<<endl;
cout<<"轉大寫"<<strupr(str)<<endl;
cout<<"轉小寫"<<strlwr(str)<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2