头文件
include<stdio.h>
代码用例
FILE *dfp,*sfp; //创建文件类dfp
dfp=fopen("message.txt","w"); //用dfp以只写方式打开message.txt w代表write只写
sfp=fopen("message.txt","r"); //用dfp以只读方式打开message.txt r代表read只读
fprintf(dfp,"%lf %d %lf %lf %lf",money,vip,discount,bus_price,subway_price);//把数据通过dfp输出到文本文件中
fclose(dfp);//关闭刚才使用dfp打开的文本文件
fscanf(sfp,"%lf %d %lf %lf %lf",&money,&vip,&discount,&bus_price,&subway_price); //把数据通过sfp输入到程序中
fclose(sfp); //关闭刚才使用sfp打开的文本文件
网友评论