单行空格相隔输入,单行输出两数之和
例如:
输入:a b
输出:a+b
代码如下:
#include<stdio.h>
int main(void){
int a,b;
scanf("%d %d",&a,&b);
printf("%d",a+b);
return 0;
}
多行输入两个数,每行输出对应之和
例如:
输入:
1 2
2 3
4 5
输出:
3
5
9
利用文件输入输出
#include<stdio.h>
int main(void){
int a,b;
while(scanf("%d %d",&a,&b)!=EOF){
printf("%d\n",a+b);}
return 0;
}
输入确定数,确定对数,输出确定和
例如:
输入:
5
1 2
2 3
5 6
4 5
8 9
输出:
3
5
11
9
17
#include<stdio.h>
int main(void){
int n,a,b;
scanf("%d",&n);
while(n--){
scanf("%d %d";&a,&b);
printf("%d\n",a+b);
}
return 0;
}
遇到0 0便不作处理并结束运算
例如:
输入:
1 2
4 5
8 9
0 0
输出:
3
9
17
#include<stdio.h>
int main(void){
int a,b;
scanf("%d %d",&a,&b);
while(a&&b){
print("%d",a+b);
scanf("%d %d",&a,&b);
}
return 0;
}
本文章总结了 __最最最基本的__输入输出格式,希望对你有所帮助。
如有需要请联系2071288228@qq.com