题解 1000: [竞赛入门]简单的a+b

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

note an easy problem2

摘要:哈哈哈#includeint main(){    int strcpy_my(int n, char c[], int m);    int n, m;    char a[100];    sca……

输出a+b - python

摘要:解题思路:首先input输入两个int型整数,然后求和打印出来注意事项:while可以一直循环参考代码:while True:     a,b = map(int,input().split()) ……

简单的a+b题解

摘要:解题思路:注意事项:参考代码:while True:#while True 语句中一定要有结束该循环的break语句,否则会一直循环下去的   try:   #Python 中,用try except……

[竞赛入门]简单的a+b

摘要:解题思路:注意事项:参考代码:while True:    a,b = map(int,input().split())    if a > 2**10 or b > 2**10:        br……

Python第一天1 a + b

摘要:解题思路: 本来可能会出现多个空格的情况,但是想着还是算了,否则的话,可以使用正则表达式,但是没有必要注意事项:这道题不是很严谨参考代码:while True:     str1 = input()……