码迷,mamicode.com
首页 > 编程语言 > 详细

C语言,产生一组数字,并将其写入txt文档中

时间:2018-11-23 15:25:13      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:连续   系统   null   getc   main   fclose   数字   getch   版本   

#include<stdio.h>

/*产生一组连续的数字,并将其写到txt文档中*/

/*说明:本程序在在win10 系统64位下用Dev-C++ 5.11版本编译器编译的*/
int main()
{
int m=1;
FILE *fp=NULL;
fp=fopen("D:\\1.txt","w");    //写入D盘1.txt中


for(m=1;m<=100;m++)
{
printf("%d;",m);
fprintf(fp,"%d;",m);
}
fclose(fp);
getchar();
}

C语言,产生一组数字,并将其写入txt文档中

标签:连续   系统   null   getc   main   fclose   数字   getch   版本   

原文地址:https://www.cnblogs.com/coolyouguo/p/10007512.html

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