標題:
403 字串與檔案處理 (字串大小寫轉換)
[打印本頁]
作者:
陳育霖
時間:
2023-10-6 22:41
標題:
403 字串與檔案處理 (字串大小寫轉換)
1. 題目說明:
請依下列題意進行作答,使輸出值符合題意要求。
2. 設計說明:
請撰寫一程式,讓使用者輸入英文字串(無空白字元),字串長度不超過100字元,將字串中小寫字母轉成大寫字母、大寫字母轉成小寫字母後輸出。
提示:若使用 Java 語言答題,請以「JP」開頭命名包含 main 靜態方法的 class,評測系統才能正確評分。
3. 輸入輸出:
輸入說明
英文字串(無空白字元)
輸出說明
此字串大小寫轉換
範例輸入
ABcdefGH
範例輸出
abCDEFgh
本帖隱藏的內容需要回復才可以瀏覽
作者:
曾宥程
時間:
2023-10-7 11:31
#include<bits/stdc++.h>
using namespace std;
int main()
{
string str;
cin>>str;
for(int i=0 ; i<str.length() ; i++)
{
if(str[i]>= 'A' && str[i]<= 'Z')
str[i]=str[i]-'A'+'a';
else
str[i]=str[i]-'a'+'A';
}
cout<<str<<endl;
}
複製代碼
作者:
林羿丞
時間:
2023-10-7 11:31
#include<bits/stdc++.h>
using namespace std;
int main()
{
string n;
cin>>n;
for(int i=0;i<n.length();i++)
{
if(n[i]>='A'&&n[i]<='Z')
cout<<char(n[i]-'A'+'a');
else
cout<<char(n[i]-'a'+'A');
}
}
複製代碼
作者:
王銘鴻
時間:
2023-10-20 21:30
#include<bits/stdc++.h>
using namespace std;
int main()
{
string str;
cin >> str;
for(int i=0 ; i <str.size() ; i++)
{
if(str[i] >= 'A' && str[i] <= 'Z')
{
cout << char(str[i] - 'A' + 'a');
}
else
{
cout << char(str[i] = str[i] - 'a' + 'A');
}
}
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2