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

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

筛选

[竞赛入门]简单的a+b (C语言代码)

摘要:解题思路:利用scanf()函数的返回值,实现每接收两个数,就输出他们的和。注意事项:本题注意scanf函数的返回值就行了,有n个变量接收到了相应的值,那么scanf()函数就返回n。参考代码:#in……

简单的a+b (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){      int a,d;      while(~scanf("%d%d",&a,&b));      pr……

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

摘要:#include<stdio.h> int main() { int a,b; while(scanf("%d %d",&a,&b)==2) printf("%d\n",a+b); ……

简单的a+b (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<>int main(){    int a,b;while (scanf("%d%d",&a,&b)==2);{printf("%d\n",a+b);}……

简单的a+b (C语言代码)

摘要:解题思路:定义俩个变量,相加求和注意事项:注意变量的范围参考代码:#include<stdio.h>void main(){int a,b,sum;sum=a+b;printf("a+b=%d",su……

SHIYI:简单的a+b (C语言代码)

摘要:解题思路:参考答案主要就是这一句while(~scanf("%d%d", &a, &b)),在while循环中使用scanf()意思是取返回值(即正确录入的数据个数),至于“~”意思意思是按位取反,当……

简单的a+b (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int a,b;     while(scanf("%d%d",&a,&b)==2)     {     ……

[竞赛入门]简单的a+b-题解(C语言代码)

摘要:最近开始温习C语言然后发现自己实在是所学甚少.... 这道题就是注意下scanf的返回值就好了,笔者因为不知道ctrl+Z的用法卡了好久。 ```c #include int main()……