一天俩题,继续A+B就不多说了,主要是了解IO的状态,同时感叹一下这种简单题居然都能只有百分之五十的AC。
A+B三 代码如下
while True:
try:
input_list=input().split(" ")
if input_list[0]=='0' and input_list[1]=='0':
break
print(int(input_list[0])+int(input_list[1]))
except:
break
和A+B四
while True:
try:
input_list=input().split(" ")
if input_list[0]=="0":
break
sum=0
for i in range(int(input_list[0])):
sum+=int(input_list[i+1])
print(sum)
except (Exception, BaseException) as e:
print(e)
break