標題:
406 字串與檔案處理 (判斷字元並修改)
[打印本頁]
作者:
鄭繼威
時間:
2024-2-1 09:20
標題:
406 字串與檔案處理 (判斷字元並修改)
1. 題目說明:
請依下列題意進行作答,使輸出值符合題意要求。
2. 設計說明:
請撰寫一程式,讓使用者輸入一個長度不超過50字元的字串,該字串包含英文大小寫,將每個字元依照鍵盤的位置,輸出它們右邊的大寫或小寫英文字母。若輸入字母的右邊並非英文字母,如「P」、「L」、「M」,則不做更動,原樣輸出。
鍵盤上的英文字母位置圖
提示:若使用 Java 語言答題,請以「JP」開頭命名包含 main 靜態方法的 class,評測系統才能正確評分。
3. 輸入輸出:
輸入說明
一個長度不超過50字元的字串,字串包含英文大小寫。
輸出說明
依照鍵盤位置,輸出每個字元右邊的大寫或小寫英文字母。
範例輸入
NovemBer
範例輸出
MpbrmNrt
本帖隱藏的內容需要回復才可以瀏覽
Python
keyboard = [['q','w','e','r','t','y','u','i','o','p']
, ['a','s','d','f','g','h','j','k','l']
, ['z','x','c','v','b','n','m']]
def find_right_alpha(c):
global keyboard
output_c = ''
for i in range(len(keyboard)):
if c in keyboard[i]:
idx = keyboard[i].index(c)
# print(idx)
if idx == len(keyboard[i]) - 1:
output_c = keyboard[i][idx]
else:
output_c = keyboard[i][idx + 1]
return output_c
input_str = input()
output_str = ''
for c in input_str:
if c.isupper():
c = c.lower()
# print(c)
output_str += find_right_alpha(c).upper()
else:
output_str += find_right_alpha(c)
print(output_str)
複製代碼
作者:
許浩浩
時間:
2024-2-1 12:01
str1="QAZWSXEDCRFVTGBYHNUJMIKOLP"
str2="WSXEDCRFVTGBYHNUJMIKMOLPLP"
n=input()
for i in range(len(n)):
if(ord(n[i])>=97):
idx=str1.find(chr(ord(n[i])-32))
s=str2[idx]
print(chr(ord(s)+32),end="")
else:
idx=str1.find(n[i])
s=str2[idx]
print(s,end="")
複製代碼
作者:
王亭婷
時間:
2024-2-1 12:01
str1="QAZWSXEDCRFVTGBYHNUJMIKOLP"
str2="WSXEDCRFVTGBYHNUJMIKMOLPLP"
str3=input()
for i in range(len(str3)):
if(str3[i].isupper()):
idx=str1.find(str3[i])
print(str2[idx],end="")
else:
s=chr(ord(str3[i])-32)
idx=str1.find(s)
s=chr(ord(str2[idx])+32)
print(s,end="")
作者:
沈敬翔
時間:
2024-2-1 12:03
str1="QAZWSXEDCRFVTGBYHNUJMIKOLPqazwsxedcrfvtgbyhnujmikolp"
str2="WSXEDCRFVTGBYHNUJMIKMOLPLPwsxedcrfvtgbyhnujmikmolplp"
n=input()
for i in range(len(n)):
ans=str1.find(n[i])
print(str2[ans],end="")
複製代碼
回復
1#
鄭繼威
作者:
張桔熙
時間:
2024-2-1 12:07
str1="QAZWSXEDCRFVTGBYHNUJMIKOLP"
str2="WSXEDCRFVTGBYHNUJMIKMOLPLP"
str3=input()
for i in range(len(str3)):
if(str3[i].isupper()):
idx=str1.find(str3[i])
print(str2[idx],end="")
else:
s=chr(ord(str3[i]-32)
idx=str1.find(s)
s=chr(ord(str2[idx]+32))
print(s,end="")
複製代碼
作者:
陳羨芮
時間:
2024-2-1 12:07
str1="QAZWSXEDCRFVTGBYHNUJMIKOLP"
str2="WSXEDCRFVTGBYHNUJMIKMOLPLP"
str3=input()
for i in range(len(str3)):
if str3[i].isupper():
idx=str1.find(str3[i])
s=str2[idx]
print(s,end="")
else:
s=chr(ord(str3[i])-32)
idx=str1.find(s)
s=chr(ord(str2[idx])+32)
print(s,end="")
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2