码迷,mamicode.com
首页 > 其他好文 > 详细

基本文件输入输出

时间:2019-01-20 20:07:05      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:double   基本   out   pen   输入输出   code   color   a.out   用法   

#include "stdafx.h"
#include <stdio.h>

 
int main() {
    FILE *fin,*fout;
    fin = fopen("data.in", "rb");
    fout = fopen("data.out", "wb");
    int x, n = 0, min, max, s = 0;
    fscanf(fin, "%d", &x);
    min = max = x;
    s += x; n++;
    while (fscanf(fin, "%d", &x) == 1) {
        if (x < min)
            min = x;
        if (x > max)
            max = x;
        n++;
    }
    fprintf(fout, "%d %d %.3f\n", min, max, (double)s / n);
    fclose(fin);
    fclose(fout);
    return 0;

}

声明两个变量fin和fout,使输入流源和输出流目标定向为文件,其余用法和scanf,printf类似

基本文件输入输出

标签:double   基本   out   pen   输入输出   code   color   a.out   用法   

原文地址:https://www.cnblogs.com/ZengWeiHao/p/10295726.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!