LikeWater - 1000: [竞赛入门]简单的a+b(很难相信这道题的正确率居然只有51%!!) 摘要:#这道题的特点是不用写,直接点提交就行了,因为已经帮你写好了。 ```cpp #include using namespace std; int main() { int a,b;…… 题解列表 2023年03月12日 0 点赞 0 评论 631 浏览 评分:2.0
C++:类和访问权限 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std ;class sum{…… 题解列表 2025年03月21日 1 点赞 0 评论 873 浏览 评分:2.0
[竞赛入门]简单的a+b 第一题 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h> // 用于exit函数int main() { &nbs…… 题解列表 2025年04月10日 16 点赞 1 评论 3892 浏览 评分:2.0
简单的a+b (C语言代码) 摘要:#include<stdio.h>int main(){ int a,b; printf ("please input two numbers :\n"); while(scanf("%d…… 题解列表 2017年06月11日 0 点赞 0 评论 1520 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:#include <stdio.h>int main(){ int a,b; printf("请任意输入两个数a和b:"); while(scanf("%d%d",&a,&b)==2) pri…… 题解列表 2017年06月12日 1 点赞 0 评论 1233 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:#include<studio.h>main(){ int a=0 ,b=0; scanf('%d %d',&a,&b); …… 题解列表 2017年06月16日 0 点赞 0 评论 1124 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:#include<stdio.h>int main(){int a=0;int b=0;while(1){scanf("%d%d",&a,&b);printf("%d+%d=%d",a,b,a+b);…… 题解列表 2017年06月22日 0 点赞 0 评论 1467 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:# include <stdio.h>int main(void){int q a b;int q = 0;scanf("%d %d, &a, &b");if(a + b = q)printf("%d…… 题解列表 2017年06月23日 2 点赞 0 评论 1220 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:#include <stdio.h> int main() { int a,b; scanf("%d%d",&a,&b); printf("a+b=%d",a+b); return 0 …… 题解列表 2017年06月26日 1 点赞 0 评论 1822 浏览 评分: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); return 0; } …… 题解列表 2017年06月28日 0 点赞 0 评论 1108 浏览 评分:0.0