函数ReadDat()实现从数据文件in.dat中读取一篇英文文章存入到字符串数组xx中,请编写函数ConvertCharD(),其函数的功能是:以行为单位把字符串中的所有小写字母改写成该字母的上一个字母。如果是字母a,则改写成字母z,其他字符保持不变。把

admin2013-12-10  45

问题 函数ReadDat()实现从数据文件in.dat中读取一篇英文文章存入到字符串数组xx中,请编写函数ConvertCharD(),其函数的功能是:以行为单位把字符串中的所有小写字母改写成该字母的上一个字母。如果是字母a,则改写成字母z,其他字符保持不变。把已处理的字符串仍按行重新存入字符串数组xx中。最后main()函数调用函数WriteDat()把结果XX输出到文件out.dat中。
    例如:原文:Adb.Bedza
    abek.LL hj
  结果:Aca.Bbcyz
    zabj.LLgi
  原始数据文件存放的格式是:每行的宽度均小于80个字符.含标点符号和空格。
【试题程序】
    #include
    #include
    char xx[50] [80];
    int maxline=0;   /*文章的总行数*/
    int ReadDat(void);
    void WriteDat(void);
    void ConvertCharD(void)
    {
    }
    void main()
    {
    if(ReadDat()){
    printf(”数据文件IN.DAT不能打开!\n\007”);
    return;
    }
    ConvertCharD();
    WriteDat():
    }
    int ReadDat(void)
    {
    FILE*fp;
    int i=0:
    char*P;
    if((fp=fopen(“in.dat”。“r”))==NULL)
    return 1;
    while(fgets(xx,80,fp)!=NULL){
    p:strchr(xx.\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    printf(“%s\n”,xx);
    fprintf(fp/“%s\n”,xx);
  }
  fclose(fp);
}

选项

答案void ConvertCharD(void) {int i,j; /*定义变量*/ for(i=0;i=a&&xx[i][j]<=z) if(xx[i-]Fjl==’a’)xx[i][j]=zt else xx[Q[j]-一; }

解析
转载请注明原文地址:https://jikaoti.com/ti/av37FFFM
0

最新回复(0)