听取RE声一片

B2001 入门测试题目

python 单行多个输入不能直接简单地用 `input()` 应使用 `a,b=map(int, input().split())` 建议查阅:<https://blog.csdn.net/sinat_28576553/article/details/81150853>
by Drest @ 2024-05-29 19:34:57


@[liulijinyu](/user/1328469) 别犯低级错误 ```python a,b=map(int,input().split()) print(a+b) ``` 单行多个输入要用`map(int,input().split())` 不能直接用`int(input())`
by LG_Sam @ 2024-06-23 20:38:54


这么简单的题,谁RE呀?
by Czs120828 @ 2024-07-12 19:39:30


|