python咋没人用

P1001 A+B Problem

Kevin_King @ 2021-12-07 14:12:03

为什么没人用python解这道题


by Stinger @ 2021-12-07 14:18:39


by FerventTemp0 @ 2021-12-07 15:00:51

https://www.luogu.com.cn/record/list?pid=P1001&language=7&page=1

开除人类籍贯名单


by 机关王梓丞 @ 2021-12-11 20:30:57

有这种语言么???


by jimmy996 @ 2021-12-27 18:52:52

a=input();b=input();print(a+b)


by sduoooh @ 2022-01-08 23:08:33

@jimmy996

input()

貌似获取到的是字符串,你的

a+b

只能是得到

ab

的输出吧。。。


by codeLJH114514 @ 2022-01-09 22:14:39

云,input()得到的是整行,就算加了int()也会RE


by codeLJH114514 @ 2022-01-11 16:12:02

a = input().split()
print(int(a[0]) + int(a[1]))

by R_block @ 2022-01-22 21:59:47

print(sum(int(i) for i in input().split(' ')))#一行解决嘛


by 114514WJJ @ 2022-01-25 16:01:48

@机关王梓丞 ???


by Xiphi @ 2022-01-26 08:07:28

现在c++最流行


| 下一页