j823. 編程從此變得方便
Tags : 變數 類型
Accepted rate : 64人/70人 ( 91% ) [非即時]
評分方式:
Strictly

最近更新 : 2023-08-07 15:28

Content

在編程時,我們通常都要複製一大堆資料,請你編程一段程序,解決問題。

Input

輸入一堆東西(可以是字串或數字),輸入的最後一行須為"stop",代表輸入的結束,這個文字請勿做任何處理。

 

Output

將輸入的東西以print包住。

Sample Input #1
hi
hi
hi
stop
Sample Output #1
print("hi")
print("hi")
print("hi")
Sample Input #2
1
2
3
4
5
6
7
stop
Sample Output #2
print(1)
print(2)
print(3)
print(4)
print(5)
print(6)
print(7)
Sample Input #3
1
2
hi
stop
Sample Output #3
print(1)
print(2)
print("hi")
測資資訊:
記憶體限制: 64 MB
公開 測資點#0 (33%): 1.0s , <1K
公開 測資點#1 (33%): 1.0s , <1K
公開 測資點#2 (34%): 1.0s , <1K
Hint :

保證測資裡沒有True和False。

Tags:
變數 類型
出處:
三國迷李牧粉題集 [管理者: 1360467-8@g. ... (三國迷李牧粉) ]

Status Forum 排行

ID User Problem Subject Hit Post Date
35459 1360467-8@g. ... (三國迷李牧粉) j823
思路
293 2023-06-04 14:52
36155
Unknown User
j823
270 2023-07-07 18:25