当前位置: 代码迷 >> C语言 >> 无缘无故多了一行空白,大家帮我看看
  详细解决方案

无缘无故多了一行空白,大家帮我看看

热度:159   发布时间:2007-11-28 20:36:05.0
无缘无故多了一行空白,大家帮我看看
#include "stdio.h"
#include "stdlib.h"
#include "assert.h"
#include "string.h"
void main()
{
FILE *file1,*file2,*destFile;
char a[100],temp,c;
int i=0,j=0,k=0;
file1=fopen("file1.txt","r");
file2=fopen("file2.txt","r");
destFile=fopen("hello.txt","w+");
assert(file1!=NULL&&file2!=NULL&&destFile!=NULL);
while((c=fgetc(file1))!=EOF)
  if(c!=' ')
   a[k++]=c;
while((c=fgetc(file2))!=EOF)
  if(c!=' ')
   a[k++]=c;
a[k]='\0';
fclose(file1);
fclose(file2);
//采用选择排序法对数组a中的字符进行升序排序;
for(i=0;i<=k-2;++i)
  for(j=i+1;j<=k-1;++j)
   if(a[i]>a[j])
   {
    temp=a[i];
    a[i]=a[j];
    a[j]=temp;
   }
printf("%s\n",a);
fputs(a,destFile);
fclose(destFile);
system("pause");
}
数组a输出时第一行总是空白,why?迷惑的很。。。
搜索更多相关的解决方案: 空白  无缘无故  

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