1. <tt id="5hhch"><source id="5hhch"></source></tt>
    1. <xmp id="5hhch"></xmp>

  2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

    <rp id="5hhch"></rp>
        <dfn id="5hhch"></dfn>

      1. 面試題目:統計每一學生的平均成績

        時間:2020-11-21 10:25:03 筆試題目 我要投稿

        面試題目:統計每一學生的平均成績

          已知文件中存有10 個學生的數學、政治、和英語三門課的成績,試統計每一學生的'平均成績,并存入該文件中。

        面試題目:統計每一學生的平均成績

          解:#include

          struct student{ int number;

          char cname[10];

          int shuxue;

          int zhengzhi;

          int yingyu;

          double ave;};

          main()

          {

          FILE *fp;

          struct student s[10];

          int size;

          int i;

          size=sizeof(struct student);

          if((fp=fopen(“student”,”ab+”))==NULL)

          {

          printf(“cannot open the file!”);

          exit(0);

          }

          for(i=0;i<10;i++)

          {

          fread(&s[i],size,1,fp);

          s[i].ave=(s[i].shuxue+s[i].zhengzhi+s[i].yingyu)/3;

          }

          rewind(fp);

          for(i=0;i<10;i++)

          fwrite(&s[i],size,i,fp);

          fclose(fp);

          }

        【面試題目:統計每一學生的平均成績】相關文章:

        求高于平均分的學生學號及成績11-24

        2017美國各州SAT平均成績排名08-21

        2017國考統計局面試指導:專業題目如何備考10-27

        如何提升面試的成績01-25

        海信面試英語題目09-19

        美國私立高中SAT平均成績排名前5005-15

        面試會計的筆試題目11-23

        面試公司網管出的題目07-31

        數院概率統計系學生面試經驗10-13

        国产高潮无套免费视频_久久九九兔免费精品6_99精品热6080YY久久_国产91久久久久久无码

        1. <tt id="5hhch"><source id="5hhch"></source></tt>
          1. <xmp id="5hhch"></xmp>

        2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

          <rp id="5hhch"></rp>
              <dfn id="5hhch"></dfn>