摘要: #include 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... 阅读全文
posted @ 2019-01-30 13:44 少不了 阅读(189) 评论(0) 推荐(0)