当前位置: 代码迷 >> C语言 >> [求助]问一道自动换行程序
  详细解决方案

[求助]问一道自动换行程序

热度:156   发布时间:2005-09-04 05:35:00.0
[求助]问一道自动换行程序
把1.TXT的内容转换到2.txt

要求1.TXT的文本每读10个字符换行直到全文读完然后转换到2.TXT中

我就是换行写不出来,哪位大哥哥,救救小妹啊~~~
搜索更多相关的解决方案: 自动  

----------------解决方案--------------------------------------------------------

原来你的程序目的是这样子,根本无须用到fwrite() #include <stdio.h> #include <conio.h>

int main() { FILE *fin=NULL,*fout=NULL; int counter=0; fin=fopen("1.txt","r"); fout=fopen("2.txt","w"); if(!fin) { puts("Cannot open file 1.txt"); return 0; } while(!feof(fin)) { if(counter == 10) { fputc('\n',fout); counter=0; continue; } fputc(fgetc(fin),fout); counter++; } puts("Process complete!\n"); fclose(fin); fclose(fout); getch(); return 0; }

[此贴子已经被作者于2005-9-4 9:42:28编辑过]


----------------解决方案--------------------------------------------------------
为什么运行完还有一个符号啊???
是不可显示的
----------------解决方案--------------------------------------------------------
main()
{
int i,s[1000];
for(i=0;i&lt;1000;i++)
{
  if(i%10==0)
printf("\n");
printf("%3d",s[i]);
}
}
----------------解决方案--------------------------------------------------------
  相关解决方案