程式設計競賽中讀檔案技能

少不了發表於2019-01-30
#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
",a+b);
	}

	fclose(stdin);	//關閉輸入流
	fclose(stdout); //關閉輸出流
	return 0;
}

  

相關文章