返回列表 發帖

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
  1. str1, str2 = input(), input()
  2. if len(str1) <= 3 or len(str1) > 20 or len(str2) <= 3 or len(str2) > 20:
  3.     print('error')
  4. else:
  5.     print(len(str1))
  6.     print(len(str2))
  7.     print(str2[::-1] + str1[::-1])
複製代碼

  1. str1=input()
  2. str2=input()

  3. #輸入兩個長度大於3且不超過20的字串
  4. if(len(str1)>3 and len(str1)<=20) and (len(str2)>3 and len(str2)<=20):
  5.     #輸出兩字串的長度以及兩字串連結後反轉
  6.     print(len(str1))
  7.     print(len(str2))
  8.     str3=str1+str2
  9. #    for i in range(len(str3)-1,-1,-1):
  10. #        print(str3[i],end="")
  11.     print(str3[::-1])
  12.    
  13. else:
  14.     print("error")
複製代碼

TOP

  1. a=input()
  2. b=input()

  3. if (len(a)>3 and len(a)<=20) and (len(b)>3 and len(b)<=20):
  4.     print(len(a))
  5.     print(len(b))
  6.     c=a+b
  7.     print(c[::-1])
  8. else:
  9.     print("error")
複製代碼
回復 1# 鄭繼威

TOP

本帖最後由 陳羨芮 於 2024-2-1 15:03 編輯
  1. str1=input()
  2. str2=input()
  3. if len(str1)>3 and len(str1)<20 and len(str2)>3 and len(str2)<20:
  4.     print(len(str1))
  5.     print(len(str2))
  6.     print(str2[::-1]+str1[::-1])
  7. else:
  8.     print("error")
複製代碼
  1. str1=input()
  2. str2=input()
  3. if len(str1)>3 and len(str1)<20 and len(str2)>3 and len(str2)<20:
  4.     print(len(str1))
  5.     print(len(str2))
  6.     str3=str1+str2
  7.     for i in range(len(str3)-1,-1,-1):
  8.         print(str3[i],end="")
  9. else:
  10.     print("error")
複製代碼

TOP

  1. a=input()
  2. b=input()
  3. if(len(a)>3 and len(b)<=20)and(len(b)>3 and len(b)<=20):
  4.     print(len(a))
  5.     print(len(b))
  6.     n=a+b
  7.     for i in range(len(n)-1,-1,-1):
  8.         print(n[i],end="")
  9. else:
  10.     print("error")
複製代碼

TOP

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")

TOP

  1. str1=input()
  2. str2=input()

  3. if(len(str1)>3 and len(str1)<=20) and (len(str2)>3 and len(str2)<=20):

  4.     print(len(str1))
  5.     print(len(str2))
  6.     str3=str1+str2
  7.    
  8.     print(str3[::-1])
  9.    
  10. else:
  11.     print("error")
複製代碼

TOP

  1. str1=input()
  2. str2=input()
  3. if(len(str1)>3 and len(str1)<=20) and (len(str2)>3 and len(str2)<=20):
  4.     print(len(str1))
  5.     print(len(str2))
  6.     str3=str1+str2
  7.     print(str3[::-1])        
  8. else:
  9.     print("error")
複製代碼

TOP

返回列表