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. 計算機二級考試C語言試題與答案

        時間:2024-10-27 03:53:30 計算機等級 我要投稿

        計算機二級考試C語言試題與答案

          計算機二級考試在即,yjbys小編為同學們帶來最新C語言考試試題,希望對大家復習C語言有幫助!

        計算機二級考試C語言試題與答案

          程序改錯

          功能:一個5位數,判斷它是不是回文數。即12321是回文數,個

          位與萬位相同,十位與千位相同。

          ------------------------------------------------------*/

          #include "stdio.h"

          main( )

          {

          /**********ERROR**********/

          long ge,shi,qian;wan,x;

          scanf("%ld",&x);

          /**********ERROR**********/

          wan=x000;

          qian=x000/1000;

          shi=x0/10;

          ge=x;

          /**********ERROR**********/

          if (ge==wan||shi==qian)

          printf("this number is a huiwen\n");

          else

          printf("this number is not a huiwen\n");

          }

          改:long ge,shi,qian,wan,x;

          wan=x/10000;

          if (ge==wan&&shi==qian)

          /*------------------------------------------------------

          【程序改錯】

          --------------------------------------------------------

          功能:用下面的和式求圓周率的近似值。直到最后一項的絕對值

          小于等于0.0001。

          π/4= 1- 1/3 + 1/5 - 1/7 ....

          ------------------------------------------------------*/

          #include "stdio.h"

          /**********ERROR**********/

          #include "math"

          void fun()

          {

          float s=0,t=1,i=1;

          /**********ERROR**********/

          int p=1;

          /**********ERROR**********/

          while(fabs(t)<=1e-4)

          {

          s=s+t;

          p=-p;

          i=i+2;

          t=p/i;

          }

          /**********ERROR**********/

          printf("pi=%d\n",s*4);

          }

          main()

          {

          fun();

          改:#include "math.h"

          float p=1;

          while(fabs(t)>1e-4)

          while(0.0001

          while(1e-4

          while(fabs(t)>0.0001)

        【計算機二級考試C語言試題與答案】相關文章:

        計算機二級C語言考試試題及答案10-09

        計算機二級C語言考試上機沖刺試題及答案09-08

        計算機等級考試二級C語言考試試題(帶答案)10-30

        計算機二級C語言模擬試題及答案08-25

        計算機二級《C語言》模擬試題及答案07-31

        計算機二級C語言沖刺試題及答案10-29

        計算機二級考試C++試題及答案08-01

        計算機二級考試C++試題及答案10-08

        2024最新計算機二級c語言試題及答案10-25

        計算機C語言試題及答案07-26

        国产高潮无套免费视频_久久九九兔免费精品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>