问答题
函数ReadDat()的功能是实现从文件IN32.DAT中读取一篇英文文章存入到字符串数组xx中。请编制函数StrOR(),该函数的功能是:以行为单位把字符串中所有小写字母。左边的字符串内容移至该串的右边存放,然后把小写字母。删除,余下的字符串内容移到已处理字符串的左边存放,最后把已处理的字符串仍按行重新存入字符串数组xx中。最后调用函数WriteDat()把结果输出到文件OUT32.DAT中。 例如,原文:You can create an index on any field you have the correct record 结果:n any field Yu can create an index rd yu have the crrect rec 原始数据文件存放的格式是:每行的宽度均小于80个字符,含标点符号和空格。 注意:部分源程序已给出。 请勿改动主函数main()、读函数ReadDat()和写函数WriteDat()的内容。 试题程序: #include<stdio. h> include<string. h> # include<conio. h> char xx[50] [80]; int maxline=0; int ReadDat (void); void WriteDat(void); void StrOR (void)
void main ()
clrscr ( ); if (ReadDat ( ) )
printf ("数据文件IN32.DAT不能打开! /n/007"); return;
StrOR ( ); WriteDat ( );
int ReadDat (void)
FILE *fp; int i=0; char *p; if ( (fp= fopen ( "IN32. DAT", "r" ) ) ==NULL) return 1; while (fgets (xx [i] , 80, fp) ! =NULL)
p=strchr [xx[i] , '/n'); if (p) *p=0; i++;
maxline=i; fclose(fp); return 0;
void WriteDat (void)
FILE *fp; int i; ctrscr ( ); fp=fopen ("OUT32 .DAT", "w"); for (i=0; i<maxline; i++)
printf("%s/n",xx[i]); fprint f (fp, "%s/n", xx [i]);
fclose(fp);
【正确答案】void StrOR(void) { int I, j, k, index, str1; char ch; for (I=0; I<maxline; I++) { str1=strlen (xx [I] ); /*求各行的长度*/ index=str1; for (j =0; j<str1; j ++) /*将一行中所以小写字母o右边的字符依次向左移一位, 删除字母o*/ if(xx[I] [j]=='o') { for (k=j ;k<str1-1;k++) xx[I] [k]=xx[I] [k+1]; xx[I] [str1-1]=' '; index= j; /*记录下最后一个o所在的位置*/ } for [j=strl-1; j>=index; j--) /*最后一个o右侧的所有字符都移到已处理字 符串的左边*/ { ch=xx[I] [str1-1]; for (k=str1-1 ;k>0; k--) xx[I] [k]=xx[I] [k-1]; xx[I] [0] =ch; } } }