【C语言程序设计第四版】第十二章 程序设计题 2

第二题

将实数写入文件:从键盘输入若干实数(以特殊数值-1结束),分别写到一个文本文件中。

#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>

int main(void){
    double number;
    
    FILE *fp;
    if ((fp = fopen("number.txt", "w")) == NULL) {
        printf("Open file error.\n");
        exit(0);
    }
    
    scanf("%lf", &number);
    
    while (number != -1 ) {
        fprintf(fp, "%lf ", number);
        scanf("%lf", &number);
    }
    
    if (fclose(fp)) {
        printf("Can not close the file!\n");
        exit(0);
    }
    
    return 0;
    
}

 

posted @ 2021-09-29 11:06  就是想学习  阅读(252)  评论(0编辑  收藏  举报