標題:
408 字串與檔案處理 (字串長度與反轉連結)
[打印本頁]
作者:
鄭繼威
時間:
2024-2-1 09:20
標題:
408 字串與檔案處理 (字串長度與反轉連結)
本帖最後由 鄭繼威 於 2024-2-1 14:18 編輯
1. 題目說明:
請依下列題意進行作答,使輸出值符合題意要求。
2. 設計說明:
請撰寫一程式,讓使用者輸入兩個長度大於3且不超過20的字串,輸出兩字串的長度以及兩字串連結後反轉的結果,若字串長度有誤,請輸出「error」。
提示:若使用 Java 語言答題,請以「JP」開頭命名包含 main 靜態方法的 class,評測系統才能正確評分。
3. 輸入輸出:
輸入說明
兩個字串
輸出說明
字串長度與字串連結後反轉的結果
範例輸入1
abcd
efghijk
範例輸出1
4
7
kjihgfedcba
範例輸入2
ab
cdefgh
範例輸出2
error
本帖隱藏的內容需要回復才可以瀏覽
Python
str1, str2 = input(), input()
if len(str1) <= 3 or len(str1) > 20 or len(str2) <= 3 or len(str2) > 20:
print('error')
else:
print(len(str1))
print(len(str2))
print(str2[::-1] + str1[::-1])
複製代碼
作者:
鄭繼威
時間:
2024-2-1 14:30
str1=input()
str2=input()
#輸入兩個長度大於3且不超過20的字串
if(len(str1)>3 and len(str1)<=20) and (len(str2)>3 and len(str2)<=20):
#輸出兩字串的長度以及兩字串連結後反轉
print(len(str1))
print(len(str2))
str3=str1+str2
# for i in range(len(str3)-1,-1,-1):
# print(str3[i],end="")
print(str3[::-1])
else:
print("error")
複製代碼
作者:
沈敬翔
時間:
2024-2-1 14:31
a=input()
b=input()
if (len(a)>3 and len(a)<=20) and (len(b)>3 and len(b)<=20):
print(len(a))
print(len(b))
c=a+b
print(c[::-1])
else:
print("error")
複製代碼
回復
1#
鄭繼威
作者:
陳羨芮
時間:
2024-2-1 14:32
本帖最後由 陳羨芮 於 2024-2-1 15:03 編輯
str1=input()
str2=input()
if len(str1)>3 and len(str1)<20 and len(str2)>3 and len(str2)<20:
print(len(str1))
print(len(str2))
print(str2[::-1]+str1[::-1])
else:
print("error")
複製代碼
str1=input()
str2=input()
if len(str1)>3 and len(str1)<20 and len(str2)>3 and len(str2)<20:
print(len(str1))
print(len(str2))
str3=str1+str2
for i in range(len(str3)-1,-1,-1):
print(str3[i],end="")
else:
print("error")
複製代碼
作者:
許浩浩
時間:
2024-2-1 14:32
a=input()
b=input()
if(len(a)>3 and len(b)<=20)and(len(b)>3 and len(b)<=20):
print(len(a))
print(len(b))
n=a+b
for i in range(len(n)-1,-1,-1):
print(n[i],end="")
else:
print("error")
複製代碼
作者:
王亭婷
時間:
2024-2-1 14:35
str1=input()
str2=input()
if(len(str1)>3 and len(str1)<=20 and len(str2)>3 and len(str2)<=20):
print(len(str1))
print(len(str2))
str3=str1+str2
print(str3[::-1])
else:
print("error")
作者:
張桔熙
時間:
2024-2-1 14:35
str1=input()
str2=input()
if(len(str1)>3 and len(str1)<=20) and (len(str2)>3 and len(str2)<=20):
print(len(str1))
print(len(str2))
str3=str1+str2
print(str3[::-1])
else:
print("error")
複製代碼
作者:
鄭傳諭
時間:
2024-2-1 14:39
str1=input()
str2=input()
if(len(str1)>3 and len(str1)<=20) and (len(str2)>3 and len(str2)<=20):
print(len(str1))
print(len(str2))
str3=str1+str2
print(str3[::-1])
else:
print("error")
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2