问答题

函数ReadDat()实现从IN.DAT文件中读取一篇英文文章并存入道字符串数组xx中。请编写函数StrOL(),其函数的功能是:以行为单位对行中以空格或标点符号为分隔的所有单词进行倒排。最后把已处理的字符串(应不含标点符号)仍按行重新存入字符串数组xx中,最后调用函数WriteDat(),把结果xx输出到OUT.DAT文件中。
例如: 原文: You He Me
I am a student.
结果: Me He You
student a am I
原始数据文件存放的格式是:每行的宽度均小于80个字符,含标点符号和空格。
注意:部分程序已经给出。
请勿改动主函数main()、读数据函数ReadDat()和输出数据函数WriteDat()的内容。
#include<stdio.h>
#include<string.h>
#include<conio.h>
#include<ctype.h>
char xx[50][80];
int maxline=0;/*文章的总行数*/
int ReadDat(void);
void WriteDat(void);
void StrOL(void)


void main()

if(ReadDat())

printf("数据文件IN.DAT不能打开!\n\007");
return;

StrOL();
WriteDat();

int ReadDat(void)

FILE*fp;
int i=0;
char*p;
if((fp=fopen("IN.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;
fp=fopen("OUT.DAT","W");
for(i=0;i<maxline; i++)

printf("%s\n",xx[i]);
fprintf(fp,"%s\n",xx[i]);

fclose(fp);

【参考答案】

void StrOL(void)
{
int i,j,k,strl,A;
/*循环遍历英文......

(↓↓↓ 点击下方‘点击查看答案’看完整答案 ↓↓↓)
热门 试题

问答题
函数ReadDat()实现从IN.DAT文件中读取一篇英文文章并存入字符串数组xx中。请编写函数StrOR(),其函数的功能是:以行为单位,依次把字符串中所有小写字母o左边的字符串内容移到该串的右边,然后把小写字母o删除,余下的字符串内容移到已处理字符串的左边,之后,把已处理的字符串仍按行重新存入字符串数组xx中。最后main()函数调用函数WriteDat(),把结果xx输出到OUT.DAT文件中。 例如, 原文: n any field. Yu can create an index you have the correct record. 结果: n any field. Yu can create anindex rd. yuhavethe 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() if(ReadDat()) printf( 数据文件IN.DAT不能打开! n 007 ); return; StrOR(); WriteDat(); int ReadDat(void) FILE*fp; int i=0; char*p; if((fp=fopen( IN.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; fp=fopen( OUT.DAT , W ); for(i=0;i<maxline;i++) printf( %s n ,xx[i]); fprintf(fp, %s n ,xx[i]); fclose(fp);