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

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

筛选

a+b

摘要:解题思路:#include<stdio.h>void main()        {    float a,b;    while(1){scanf("%f%f",&a&b);printf("a+b=……

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

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(void){ int a=480,b=720; int c=a+b; printf("%d",c); return 0……

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

摘要:解题思路:利用 scanf 和 printf 具有返回值的特性,scanf() 函数返回成功读入的项目的个数,即 如果他没有读取到任何符合要求的项目返回值为 0,比如 要求输入整数用户输入字母;读取到……

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

摘要:解题思路:多组数据相加,需要不停的接受数据并计算和。这里用到scanf的返回值加while循环注意事项:参考代码:#include <stdio.h>int main(){ int a,b; whil……

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

摘要:解题思路:1.注意实现的是a与b相加的功能注意事项:1.在输入函数scanf需要注意后面要有取地址符参考代码:#include<stdio.h>int main(){   int a,b;   int……

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

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

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

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

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

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