本帖最後由 鄭繼威 於 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}")
複製代碼 |