在C++中如何使用循环语句生成多个文件
2个回答
2013-11-08
展开全部
我这个可以生成足够多的文件,如下:
/* Note:Your choice is C IDE */
#include "stdio.h"
#include "string.h"
#include "stdlib.h"
void main()
{
FILE *fp=NULL;
long count=0,index;
char s1[100],str[]="E:\\file";
printf("下面更精彩,请稍后……\n")
while(1)
{
count++;
index=count;
strcpy(s1,str);
sprintf(s1,"%s%ld.txt",s1,index);
fp=fopen(s1,"wb+");
if(fp==NULL)
{
printf("错误!\n");
exit(0);
}
fprintf(fp,"%s\n","恭喜你中奖了!");
fclose(fp);
fp=NULL;
printf("%s\n",s1);
index=0;
}
}
/* Note:Your choice is C IDE */
#include "stdio.h"
#include "string.h"
#include "stdlib.h"
void main()
{
FILE *fp=NULL;
long count=0,index;
char s1[100],str[]="E:\\file";
printf("下面更精彩,请稍后……\n")
while(1)
{
count++;
index=count;
strcpy(s1,str);
sprintf(s1,"%s%ld.txt",s1,index);
fp=fopen(s1,"wb+");
if(fp==NULL)
{
printf("错误!\n");
exit(0);
}
fprintf(fp,"%s\n","恭喜你中奖了!");
fclose(fp);
fp=NULL;
printf("%s\n",s1);
index=0;
}
}
2013-11-08
展开全部
你对文件有什么要求呢?简单点可以这样:
for(i=0;i<n;i++)
{
sprintf(filename,"%d",i);//指定文件名为从0开始的整数,每次加1
fp = fopen(filename,"w");//打开文件
fprintf(fp,"hello %i\n",//写点东西
fclose(fp);//关闭文件
};
for(i=0;i<n;i++)
{
sprintf(filename,"%d",i);//指定文件名为从0开始的整数,每次加1
fp = fopen(filename,"w");//打开文件
fprintf(fp,"hello %i\n",//写点东西
fclose(fp);//关闭文件
};
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询