1011 A+B 和 C (15 point(s))


ipt1 = int(input())
for i in range(ipt1):
    ipt2 = input().split(" ")
    if int(ipt2[0])+int(ipt2[1])>int(ipt2[2]):
        print("Case #%s: true"%(i+1))
    else:
        print("Case #%s: false"%(i+1))
 

这个简单,得到了满分。。。

 

 

相关文章:

  • 2021-09-26
  • 2021-11-26
  • 2022-12-23
  • 2021-04-25
  • 2021-10-08
  • 2021-04-01
  • 2021-05-30
  • 2021-08-27
猜你喜欢
  • 2021-11-28
  • 2021-05-15
  • 2021-10-25
  • 2021-12-04
  • 2021-05-09
相关资源
相似解决方案