此代码在我的IDE中运行良好,但在在线编码竞争IDE中显示RUN TIME错误,原因是什么?
我的代码有问题吗?它在我的IDE中传递了所有测试用例 是否有必要在python中有一个main函数?如果是,请说明如何使用main函数编写代码
代码部分:
t=int(input()) #input test cases from user
an=[] #list that contains results of all test cases
while t>0:
l=int(input()) #input from user on which operation to be applied
ans=l//10 #variable that contains final answer for each test cases
if ans!=0:
l=l%10
x=l//7
if x!=0:
l=l%7
ans+=x
x=l//5
if x!=0:
l=l%5
ans+=x
x=l
if x!=0:
ans+=x
t-=1
an.append(ans)
for k in an:
print(k)
答案 0 :(得分:0)
使用 如果名称 =='主要': 在要从用户那里获取输入的主要代码开始之前