简单的a+b (C语言代码) 摘要:解题思路:定义整形变量a.b宏定义两者的和。注意事项:参考代码:#include<stdio.h>#define M(a+b) a+bint main(){ int a,b,m,; pri…… 题解列表 2018年08月19日 0 点赞 0 评论 643 浏览 评分:0.0
Python第一天1 a + b 摘要:解题思路: 本来可能会出现多个空格的情况,但是想着还是算了,否则的话,可以使用正则表达式,但是没有必要注意事项:这道题不是很严谨参考代码:while True: str1 = input()…… 题解列表 2022年03月31日 0 点赞 0 评论 317 浏览 评分:0.0
[竞赛入门]简单的a+b-题解(C语言代码)sky 摘要:```c #include int main() { // so easy too happy int a,b; while(~scanf("%d%d", &a, …… 题解列表 2020年05月18日 0 点赞 0 评论 317 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码: 1 #include<stdio.h> 2 int main() 3 { 4 int a=0,b=0; printf("please inpu…… 题解列表 2018年03月25日 0 点赞 0 评论 499 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码:# include <stdio.h>int main (){int a ,b ;printf("enter a , b:") ;scanf ("%d",a,b):int…… 题解列表 2018年04月23日 0 点赞 0 评论 445 浏览 评分:0.0
1000: [竞赛入门]简单的a+b 摘要:解题思路:注意事项:其实直接提交就好,源代码就是1000的题解参考代码:#include<iostream>using namespace std;int main(){ int a,b; …… 题解列表 2023年11月03日 0 点赞 0 评论 109 浏览 评分:0.0
1000:简单的a+b 摘要:解题思路:简单的a+b注意事项:注意多项输入参考代码:#include<stdio.h>int main(){ int a,b; while(~scanf("%d%d", &a, &b))…… 题解列表 2022年02月18日 0 点赞 0 评论 157 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:#include<stdio.h>int main(){ int a,b;while(scanf("%d %d",&a,&b)==2)printf("%d\n",a+b); re…… 题解列表 2017年12月08日 0 点赞 0 评论 680 浏览 评分:0.0
[竞赛入门]简单的a+b-题解(C++代码) by Zfans. 摘要:```cpp #include using namespace std; int main() { int a, b; while (cin >> a >> b) …… 题解列表 2019年10月15日 0 点赞 0 评论 481 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>main(){int a,b;scanf("%d%d",&a,&b);printf("%d\n",a+b);}…… 题解列表 2018年05月05日 0 点赞 0 评论 385 浏览 评分:0.0