VJ-多种输入输出格式

单行空格相隔输入,单行输出两数之和

例如:
输入: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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值