wcqgmzhn @ 2019-08-28 14:39:58
apple = input("10个100到200之间(包括100和200)的整数").split()
high = int(input("手伸直的时候能够达到的最大高度"))
b = 0
for i in range(len(apple)):
if (high+30) >= int(apple[i]):
b += 1
print(b)
这个答题有什么格式吗, Wrong Answer. wrong answer On line 1 column 1, read 1, expected 2. 这个意思是要在头部加点什么吗。。。
by FZzzz @ 2019-08-28 14:52:58
等等,用的是python,对题目的基本格式没什么概念,难道……
by 寒鸽儿 @ 2019-08-28 14:56:06
想起某些机构
by wcqgmzhn @ 2019-08-28 15:01:14
@OvO自动机 okok
by wcqgmzhn @ 2019-08-28 15:02:51
@function_of_zero 明白了。。
by OvOAuto @ 2019-08-28 15:02:52
@wcqgmzhn lz复活了啊……
by wcqgmzhn @ 2019-08-28 15:06:51
@OvO自动机 刚才在做其他题,,没注意。
by kanekiran @ 2019-09-18 22:13:41
o2加速一下看看
by ronkeyson @ 2022-07-22 15:12:26
a = list(map(int,input().split()))
num = 0
hand = int(input())
for i in a:
if 30+hand>=i:
num += 1
print(num)
python及精简代码!可以参考