note an easy problem2 摘要:哈哈哈#includeint main(){ int strcpy_my(int n, char c[], int m); int n, m; char a[100]; sca…… 题解列表 2021年02月15日 0 点赞 1 评论 316 浏览 评分:0.0
[竞赛入门]简单的a+b-题解(Python代码) 摘要:```python #这种方式输入了2个int型的数字,split()代表以空格隔开。 while True: a,b = map(int,input().split()) p…… 题解列表 2021年01月11日 0 点赞 0 评论 853 浏览 评分:7.5
[竞赛入门]简单的a+b-题解(双题解,Python代码) 摘要:题解一: ```python while True: #while True 语句中一定要有结束该循环的break语句,否则会一直循环下去的 try: #Python 中,用…… 题解列表 2020年09月26日 0 点赞 0 评论 2627 浏览 评分:8.7
[竞赛入门]简单的a+b-题解(Python代码) 摘要:```python while True: num1=list(map(int,input().split())) n1=len(num1) sum1=0 f…… 题解列表 2020年04月01日 0 点赞 0 评论 2286 浏览 评分:8.0
[竞赛入门]简单的a+b-题解(Python代码) 摘要:``` while True: try: a,b = map(int, input().strip().split()) if a > 2**10 or…… 题解列表 2019年12月08日 0 点赞 0 评论 1499 浏览 评分:7.1