首页
技术博客
登录
6mi
u
盘
搜
搜 索
技术博客
用python来解PAT乙级1011A+B和C-15-满分
用python来解PAT乙级1011A+B和C-15-满分
tech
2025-03-02
16
这题也没啥好说的,直接上代码吧:
n = input() p = [] for i in range(int(n)): l= list(map(int,input().split())) p.append(l) for i in range(int(n)): if p[i][0]+p[i][1] > p[i][2]: print('Case #{}: true'.format(i+1)) else: print('Case #{}: false'.format(i+1))
提交:
转载请注明原文地址:https://tech.qufami.com/read-20878.html
最新回复
(
0
)