標題:
402 字串與檔案處理 (字串比較)
[打印本頁]
作者:
鄭繼威
時間:
2024-7-15 09:13
標題:
402 字串與檔案處理 (字串比較)
本帖最後由 鄭繼威 於 2024-7-15 14:37 編輯
1. 題目說明:
請依下列題意進行作答,使輸出值符合題意要求。
2. 設計說明:
請撰寫一程式,讓使用者輸入兩個相同長度的字串與一個正整數n,字串長度皆不超過128個字元,依ASCII碼表上的順序比對兩字串前n個字元,最後輸出兩字串前n個字元的比較結果。若使用者輸入正整數n超過字串長度,則輸出「error」。
提示:若使用 Java 語言答題,請以「JP」開頭命名包含 main 靜態方法的 class,評測系統才能正確評分。
3. 輸入輸出:
輸入說明
兩個相同長度的字串及一個正整數
輸出說明
兩字串前n個字元的比較結果(大於、等於、小於)
範例輸入1
Apple ipad
Apple ipod
5
範例輸出1
Apple ipad = Apple ipod
範例輸入2
Apple ipad
Apple ipod
9
範例輸出2
Apple ipad < Apple ipod
範例輸入3
Apple ipad
Apple ipod
15
範例輸出3
error
本帖隱藏的內容需要回復才可以瀏覽
Python
str1 = input()
str2 = input()
n = int(input())
compare = 0
if n > len(str1):
print('error')
exit()
for i in range(n):
compare += ord(str1[i]) - ord(str2[i])
if compare > 0:
print(str1 + ' > ' + str2)
elif compare < 0:
print(str1 + ' < ' + str2)
else:
print(str1 + ' = ' + str2)
複製代碼
s1=input()
s2=input()
n=int(input())
#輸入正整數n超過字串長度,則輸出「error」
if n>len(s1) or n>len(s2):
print("error")
else:
dif=0
for i in range(n):
dif=dif+(ord(s1[i])-ord(s2[i]))
if dif>0:
print(f"{s1} > {s2}")
elif dif<0:
print(f"{s1} < {s2}")
else:
print(f"{s1} = {s2}")
複製代碼
作者:
曾煒峻
時間:
2024-7-15 14:43
此帖僅作者可見
作者:
宋品澄
時間:
2024-7-15 14:46
此帖僅作者可見
作者:
黃裕恩
時間:
2024-7-15 14:49
此帖僅作者可見
作者:
洪椽鈞
時間:
2024-7-15 14:51
此帖僅作者可見
作者:
李承燁
時間:
2024-7-15 14:52
此帖僅作者可見
作者:
李品蓁
時間:
2024-7-15 14:56
此帖僅作者可見
作者:
蔡文霖
時間:
2024-7-15 15:05
此帖僅作者可見
作者:
洪椽鈞
時間:
2024-7-15 21:21
此帖僅作者可見
作者:
李承燁
時間:
2024-7-16 10:21
此帖僅作者可見
作者:
洪椽鈞
時間:
2024-7-16 19:05
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2