怎么把我编的一个c语言结果存到一个人txt中尽量简单
发布网友
发布时间:2023-04-03 02:57
我来回答
共3个回答
热心网友
时间:2024-01-04 18:08
void write() //保存数据到文件1.txt
{
FILE *fp;
int i,n,a[5]={1,2,3,4,5};
if((fp=fopen("1.txt","wt"))==NULL)
{
printf("cannot open file\n");
return;
}
n=5;//保存数组元素个数
for(i=0;i<n;i++)
fprintf(fp,"%d\n",a[i]);//保存每个数组元素,占一行
fclose(fp);
}
热心网友
时间:2024-01-04 18:08
c语言写txt用文件函数就可以啊 例程我有追问你直接告诉我吧,谢谢
热心网友
时间:2024-01-04 18:09
简单啊 用 fstream 做
热心网友
时间:2024-01-04 18:08
void write() //保存数据到文件1.txt
{
FILE *fp;
int i,n,a[5]={1,2,3,4,5};
if((fp=fopen("1.txt","wt"))==NULL)
{
printf("cannot open file\n");
return;
}
n=5;//保存数组元素个数
for(i=0;i<n;i++)
fprintf(fp,"%d\n",a[i]);//保存每个数组元素,占一行
fclose(fp);
}
热心网友
时间:2024-01-04 18:08
c语言写txt用文件函数就可以啊 例程我有追问你直接告诉我吧,谢谢
热心网友
时间:2024-01-04 18:09
简单啊 用 fstream 做
热心网友
时间:2024-01-04 18:08
void write() //保存数据到文件1.txt
{
FILE *fp;
int i,n,a[5]={1,2,3,4,5};
if((fp=fopen("1.txt","wt"))==NULL)
{
printf("cannot open file\n");
return;
}
n=5;//保存数组元素个数
for(i=0;i<n;i++)
fprintf(fp,"%d\n",a[i]);//保存每个数组元素,占一行
fclose(fp);
}
热心网友
时间:2024-01-04 18:08
c语言写txt用文件函数就可以啊 例程我有追问你直接告诉我吧,谢谢
热心网友
时间:2024-01-04 18:09
简单啊 用 fstream 做