本題要求編寫程式,將給定字串中的大寫英文本母按以下對應規則替換:
原字母對應字母az
bycx
dw……
xcyb
za輸入在一行中給出乙個不超過80個字元、並以回車結束的字串。
輸出在一行中給出替換完成後的字串。
only the 11 capital letters are replaced.
lnly the 11 xzkrtao oegtvih are replaced.
1#字串替換2#
author: cnrick3#
time : 2020-3-25
4 astr_list =list(input())
5for i in
range(len(astr_list)):
6if('a'
<= astr_list[i] <= 'z'
):7 astr_list[i] = str(chr(ord('
z') - (ord(astr_list[i]) - ord('a'
))))
8print("".join(astr_list))
第3章 13 字串替換 15 分
第3章 13 字串替換 15 分 本題要求編寫程式,將給定字串中的大寫英文本母按以下對應規則替換 原字母對應字母az bycx dw xcyb za輸入在一行中給出乙個不超過80個字元 並以回車結束的字串。輸出在一行中給出替換完成後的字串。only the 11 capital letters ar...
第3章 13 字串替換 15 分
第3章 13 字串替換 15 分 本題要求編寫程式,將給定字串中的大寫英文本母按以下對應規則替換 原字母對應字母az bycx dw xcyb za輸入在一行中給出乙個不超過80個字元 並以回車結束的字串。輸出在一行中給出替換完成後的字串。only the 11 capital letters ar...
第15周OJ實踐12 字串替換
問題及 time limit 1 sec memory limit 64 mb submit 389 solved 241 submit status web board 編寫乙個c程式實現將字串中的所有 you 替換成 we 輸入包含多行資料 每行資料是乙個字串,長度不超過1000 資料以eof結...