欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

程序设计竞赛中读文件技能

程序员文章站 2022-11-22 09:55:09
#include int main(){ int a,b; freopen("in.txt","r",stdin);//输入重定向,输入数据将从in.txt文件中读取 freopen("out.txt","w",stdout);//输出重定向,输出数据将保存在out.txt文件中 while(sca... ......
#include<stdio.h>
int main(){
	int a,b;
	freopen("in.txt","r",stdin);//输入重定向,输入数据将从in.txt文件中读取
	freopen("out.txt","w",stdout);//输出重定向,输出数据将保存在out.txt文件中

	while(scanf("%d %d",&a,&b)!=eof){
		printf("%d\n",a+b);
	}

	fclose(stdin);	//关闭输入流
	fclose(stdout); //关闭输出流
	return 0;
}