第七章 文件和结构体 7.1 文件操作 135页

2019-12-16  本文已影响0人  壹顾倾城
/********************************
 *  程序来源:董老师一本通
 * 程序名称:135 7.1
 *  章      节:7.1 文件操作
 * 作    者:tiaya@qq.com
 * 运行测试:通过
 *******************************/
//#include <bits/stdc++.h>  //万能头文件,不建议使用
#include <iostream>
#include <cstdio>
 
using namespace std;

//main() star
int main() {
    //code here
    freopen("in.txt", "r", stdin);
    freopen("out.txt", "w", stdout);
    
    int tmp = 0, sum = 0;
    //一次读取一个输入,如果没有输入,返回EOF 
    while(scanf("%d", &tmp) == 1) {
        sum += tmp;
    }
    printf("sum=%d", sum);
    
    fclose(stdin);
    fclose(stdout);
     
    return 0;
}

测试数据:
输入:in.txt

1 3 4 5 

输出:out.txt

sum=13
上一篇 下一篇

猜你喜欢

热点阅读