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. 下半年計(jì)算機(jī)C語(yǔ)言考試題庫(kù)及答案

        時(shí)間:2023-03-05 14:56:04 計(jì)算機(jī)等級(jí) 我要投稿
        • 相關(guān)推薦

        2016年下半年計(jì)算機(jī)C語(yǔ)言考試題庫(kù)及答案

          1.下列給定程序中,函數(shù)fun的功能是計(jì)算如下公式  直到 ,并且把計(jì)算結(jié)果作為函數(shù)值返回。

        2016年下半年計(jì)算機(jī)C語(yǔ)言考試題庫(kù)及答案

          例如,若形參e的值為1e-3,則函數(shù)返回值為0.551690。請(qǐng)?jiān)谙聞澗處填入正確的內(nèi)容并將下劃線刪除,使程序得出正確的結(jié)果。

          注意:部分源程序在文件BLANK1.C中。

          不得增行或刪行,也不得更改程序的結(jié)構(gòu)!

          #include

          double fun(double e)

          { int i, k; double s, t, x;

          s=0; k=1; i=2;

          /**********found**********/

          x=__1__/4;

          /**********found**********/

          while(x __2__ e)

          { s=s+k*x;

          k=k* (-1);

          t=2*i;

          /**********found**********/

          x=__3__/(t*t);

          i++;

          }

          return s;

          }

          main()

          { double e=1e-3;

          printf("\nThe result is: %f\n",fun(e));

          }

          【參考答案】

          (1)3.0或(double)3  (2)>  (3) (t+1)

          2. 下列給定程序中,函數(shù)fun的功能是:計(jì)算如下公式前n項(xiàng)的和并作為函數(shù)值返回。

          例如,當(dāng)形參n的值為10時(shí),函數(shù)返回值為9.612558。

          請(qǐng)?jiān)谙聞澗處填入正確的內(nèi)容并將下劃線刪除,使程序得出正確的結(jié)果。

          注意:部分源程序在文件BLANK1.C中。

          不得增行或刪行,也不得更改程序的結(jié)構(gòu)!

          #include

          double fun(int n)

          { int i; double s, t;

          /**********found**********/

          s=__1__;

          /**********found**********/

          for(i=1; i<=__2__; i++)

          { t=2.0*i;

          /**********found**********/

          s=s+(2.0*i-1)*(2.0*i+1)/__3__;

          }

          return s;

          }

          main()

          { int n=-1;

          while(n<0)

          { printf("Please input(n>0): "); scanf("%d",&n); }

          printf("\nThe result is: %f\n",fun(n));

          }

          【參考答案】

          (1) 0  (2) n  (3) (t*t)

          3.給定程序中,函數(shù)fun的功能是:統(tǒng)計(jì)形參s所指的字符串中數(shù)字字符出現(xiàn)的次數(shù),并存放在形參t所指的變量中,最后在主函數(shù)中輸出。例如,若形參s所指的字符串為abcdef35adgh3kjsdf7,則輸出結(jié)果為4。

          請(qǐng)?jiān)谙聞澗處填入正確內(nèi)容并將下劃線刪除,使程序得出正確的結(jié)果。....

          注意:部分源程序在文件BLANK1.C中。

          不得增行或刪行,也不得更改程序的結(jié)構(gòu)!

          #include

          void fun(char *s, int *t)

          { int i, n;

          n=0;

          /**********found**********/

          for(i=0; ___1___ !=0; i++)

          /**********found**********/

          if(s[i]>='0'&&s[i]<= ___2___ ) n++;

          /**********found**********/

          ___3___ ;

          }

          main()

          { char s[80]="abcdef35adgh3kjsdf7";

          int t;

          printf("\nThe original string is : %s\n",s);

          fun(s,&t);

          printf("\nThe result is : %d\n",t);

          }

          【參考答案】

          (1) s[i]  (2) '9'  (3)*t=n

          4.下列給定程序中,函數(shù)fun的功能是:把形參a所指數(shù)組中的奇數(shù)按原順序依次存放到a[0]、a[1]、a[2]、……中,把偶數(shù)從數(shù)組中刪除,奇數(shù)個(gè)數(shù)通過函數(shù)值返回。

          例如:若a所指數(shù)組中的數(shù)據(jù)最初排列為:9、1、4、2、3、6、5、8、7,刪除偶數(shù)后a所指數(shù)組中的數(shù)據(jù)為:9、1、3、5、7,返回值為5。

          請(qǐng)?jiān)谙聞澗處填入正確的內(nèi)容并將下劃線刪除,使程序得出正確的結(jié)果。

          注意:部分源程序在文件BLANK1.C中。

          不得增行或刪行,也不得更改程序的結(jié)構(gòu)!

          #include

          #define N 9

          int fun(int a[], int n)

          { int i,j;

          j = 0;

          for (i=0; i

          /**********found**********/

          if (a[i]%2==___1___)

          {

          /**********found**********/

          a[j] = a[i]; ___2___;

          }

          /**********found**********/

          return ___3___;

          }

          main()

          { int b[N]={9,1,4,2,3,6,5,8,7}, i, n;

          printf("\nThe original data :\n");

          for (i=0; i

          printf("\n");

          n = fun(b, N);

          printf("\nThe number of odd : %d \n", n);

          printf("\nThe odd number :\n");

          for (i=0; i

          printf("\n");

          }

          【參考答案】

          (1)1  (2) j++  (3)j

          5.下列給定程序中,函數(shù)fun的功能是:將形參n中,各位上為偶數(shù)的數(shù)取出,并按原來從高位到低位相反的順序組成一個(gè)新數(shù),作為函數(shù)值返回。

          例如,輸入一個(gè)整數(shù)27638496,函數(shù)返回值為64862。

          請(qǐng)?jiān)谙聞澗處填入正確的內(nèi)容并將下劃線刪除,使程序得出正確的結(jié)果。

          注意:部分源程序在文件BLANK1.C中。

          不得增行或刪行,也不得更改程序的結(jié)構(gòu)!

          #include

          unsigned long fun(unsigned long n)

          { unsigned long x=0; int t;

          while(n)

          { t=n%10;

          /**********found**********/

          if(t%2==____1____)

          /**********found**********/

          x=____2____+t;

          /**********found**********/

          n=____3____;

          }

          return x;

          }

          main()

          { unsigned long n=-1;

          while(n>99999999||n<0)

          { printf("Please input(0

          printf("\nThe result is: %ld\n",fun(n));

          }

          【參考答案】

          (1)0  (2) 10*x (3)n/10

          6.下列給定程序中,函數(shù)fun的功能是:把形參a所指數(shù)組中的最小值放在元素a[0]中,接著把a(bǔ)所指數(shù)組中的最大值放在a[1]元素中;再把a(bǔ)所指數(shù)組元素中的次小值放在a[2]中,把a(bǔ)所指數(shù)組元素中的次大值放在a[3],以此類推。

          例如,若a所指數(shù)組中的數(shù)據(jù)最初排列為:9、1、4、2、3、6、5、8、7;則按規(guī)則移動(dòng)后,數(shù)據(jù)排列為:1、9、2、8、3、7、4、6、5。形參n中存放a所指數(shù)組中數(shù)據(jù)的個(gè)數(shù)。

          規(guī)定fun函數(shù)中的max存放當(dāng)前所找的最大值,px存放當(dāng)前所找最大值的下標(biāo)。

          請(qǐng)?jiān)谙聞澗處填入正確的內(nèi)容并將下劃線刪除,使程序得出正確的結(jié)果。

          注意:部分源程序在文件BLANK1.C中。

          不得增行或刪行,也不行更改程序的結(jié)構(gòu)!

          # include

          #define N 9

          void fun(int a[], int n)

          { int i,j, max, min, px, pn, t;

          for (i=0; i

          {

          /**********found**********/

          max = min = ___1___;

          px = pn = i;

          for (j=i+1; j

          /**********found**********/

          if (max<___2___)

          { max = a[j]; px = j; }

          /**********found**********/

          if (min>___3___)

          { min = a[j]; pn = j; }

          }

          if (pn != i)

          { t = a[i]; a[i] = min; a[pn] = t;

          if (px == i) px =pn;

          }

          if (px != i+1)

          { t = a[i+1]; a[i+1] = max; a[px] = t; }

          }

          }

          main()

          { int b[N]={9,1,4,2,3,6,5,8,7}, i;

          printf("\nThe original data :\n");

          for (i=0; i

          printf("\n");

          fun(b, N);

          printf("\nThe data after moving :\n");

          for (i=0; i

          printf("\n");

          }

          【參考答案】

          (1) a[i]  (2) a[j]  (3) a[j]

          7.下列給定程序中,函數(shù)fun的功能是進(jìn)行數(shù)字字符轉(zhuǎn)換。若形參ch中是數(shù)字字符'0'~'9',則將'0'轉(zhuǎn)換成'9','1'轉(zhuǎn)換成'8','2'轉(zhuǎn)換成'7',……,'9'轉(zhuǎn)換成'0';若是其它字符則保持不變;并將轉(zhuǎn)換后的結(jié)果作為函數(shù)值返回。

          請(qǐng)?jiān)谙聞澗處填入正確的內(nèi)容并將下劃線刪除,使程序得出正確的結(jié)果。

          注意:部分源程序在文件BLANK1.C中。

          不得增行或刪行,也不得更改程序的結(jié)構(gòu)!

          #include

          /**********found**********/

          ___1___ fun(char ch)

          {

          /**********found**********/

          if (ch>='0' && ___2___)

          /**********found**********/

          return '9'- (ch-___3___);

          return ch ;

          }

          main()

          { char c1, c2;

          printf("\nThe result :\n");

          c1='2'; c2 = fun(c1);

          printf("c1=%c c2=%c\n", c1, c2);

          c1='8'; c2 = fun(c1);

          printf("c1=%c c2=%c\n", c1, c2);

          c1='a'; c2 = fun(c1);

          printf("c1=%c c2=%c\n", c1, c2);

          }

          【參考答案】

          (1) char (2) ch<='9' (3)'0'

          8.下列給定程序中,函數(shù)fun的功能是:求ss所指字符串?dāng)?shù)組中長(zhǎng)度最短的字符串所在的行下標(biāo),作為函數(shù)值返回,并把其串長(zhǎng)放在形參n所指的變量中。ss所指字符串?dāng)?shù)組中共有M個(gè)字符串,且串長(zhǎng)

          請(qǐng)?jiān)谙聞澗處填入正確的內(nèi)容并將下劃線刪除,使程序得出正確的結(jié)果。

          注意:部分源程序在文件BLANK1.C中。

          不得增行或刪行,也不得更改程序的結(jié)構(gòu)!

          #include

          #include

          #define M 5

          #define N 20

          int fun(char (*ss)[N], int *n)

          { int i, k=0, len= N;

          /**********found**********/

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

          { len=strlen(ss[i]);

          if(i==0) *n=len;

          /**********found**********/

          if(len ___2___ *n)

          { *n=len;

          k=i;

          }

          }

          /**********found**********/

          return(___3___);

          }

          main()

          { char ss[M][N]={"shanghai","guangzhou","beijing","tianjing","chongqing"};

          int n,k,i;

          printf("\nThe original strings are :\n");

          for(i=0;i

          k=fun(ss,&n);

          printf("\nThe length of shortest string is : %d\n",n);

          printf("\nThe shortest string is : %s\n",ss[k]);

          }

          【參考答案】

          (1) M  (2) <  (3) k


        更多計(jì)算機(jī)二級(jí)相關(guān)試題推薦:

        1.2016年9月計(jì)算機(jī)二級(jí)C語(yǔ)言試題題庫(kù)

        2.計(jì)算機(jī)二級(jí)C語(yǔ)言筆試歷年真題及答案

        3.2016下半年計(jì)算機(jī)二級(jí)C語(yǔ)言考試試題及答案

        4.計(jì)算機(jī)二級(jí)C語(yǔ)言新增無紙化真題試卷

        5.2016年9月計(jì)算機(jī)二級(jí)C語(yǔ)言選擇題及答案

        6.2016下半年計(jì)算機(jī)二級(jí)C語(yǔ)言預(yù)測(cè)試題及答案

        7.計(jì)算機(jī)二級(jí)C語(yǔ)言試題及答案2016

        8.計(jì)算機(jī)二級(jí)C語(yǔ)言考試上機(jī)沖刺試題及答案

        9.計(jì)算機(jī)二級(jí)c語(yǔ)言題庫(kù)2016

        10.9月計(jì)算機(jī)二級(jí)c語(yǔ)言試題及答案

          9.下列給定程序中,函數(shù)fun的功能是:將s所指字符串中的所有數(shù)字字符移到所有非數(shù)字字符之后,并保持?jǐn)?shù)字字符串和非數(shù)字字符串原有的次序。

          例如,s所指的字符串為def35adh3kjsdf7,執(zhí)行后結(jié)果為defadhajsdf3537。

          請(qǐng)?jiān)诔绦虻南聞澗處填入正確的內(nèi)容把下劃線刪除,使程序得出正確的結(jié)果。

          注意:部分源程序在文件BLANK1.C中。

          不得增行或刪行,也不得更改程序的結(jié)構(gòu)!

          #include

          void fun(char *s)

          { int i, j=0, k=0; char t1[80], t2[80];

          for(i=0; s[i]!='\0'; i++)

          if(s[i]>='0' && s[i]<='9')

          {

          /**********found**********/

          t2[j]=s[i]; ___1___;

          }

          else t1[k++]=s[i];

          t2[j]=0; t1[k]=0;

          /**********found**********/

          for(i=0; i

          /**********found**********/

          for(i=0; i<___3___; i++) s[k+i]=t2[i];

          }

          main()

          { char s[80]="ba3a54j7sd567sdffs";

          printf("\nThe original string is : %s\n",s);

          fun(s);

          printf("\nThe result is : %s\n",s);

          }

          【參考答案】

          (1)j++或j+=1或++或j=j+1

          (2)s[i]=t1[i]  (3) j

          10下列給定程序中已建立一個(gè)帶頭結(jié)點(diǎn)的單向鏈表,鏈表中的各結(jié)點(diǎn)按結(jié)點(diǎn)數(shù)據(jù)域中的數(shù)據(jù)遞增有序鏈接。函數(shù)fun的功能是:把形參x的值放入一個(gè)新結(jié)點(diǎn)并插入鏈表中,使插入后各結(jié)點(diǎn)數(shù)據(jù)域中的數(shù)據(jù)仍保持遞增有序。

          請(qǐng)?jiān)谙聞澗處填入正確的內(nèi)容并將下劃線刪除,使程序得出正確的結(jié)果。

          注意:部分源程序在文件BLANK1.C中。

          不得增行或刪行,也不得更改程序的結(jié)構(gòu)!

          #include

          #include

          #define N 8

          typedef struct list

          { int data;

          struct list *next;

          } SLIST;

          void fun( SLIST *h, int x)

          { SLIST *p, *q, *s;

          s=(SLIST *)malloc(sizeof(SLIST));

          /**********found**********/

          s->data=___1___;

          q=h;

          p=h->next;

          while(p!=NULL && x>p->data) {

          /**********found**********/

          q=___2___;

          p=p->next;

          }

          s->next=p;

          /**********found**********/

          q->next=___3___;

          }

          SLIST *creatlist(int *a)

          { SLIST *h,*p,*q; int i;

          h=p=(SLIST *)malloc(sizeof(SLIST));

          for(i=0; i

          { q=(SLIST *)malloc(sizeof(SLIST));

          q->data=a[i]; p->next=q; p=q;

          }

          p->next=0;

          return h;

          }

          void outlist(SLIST *h)

          { SLIST *p;

          p=h->next;

          if (p==NULL) printf("\nThe list is NULL!\n");

          else

          { printf("\nHead");

          do { printf("->%d",p->data); p=p->next; } while(p!=NULL);

          printf("->End\n");

          }

          }

          main()

          { SLIST *head; int x;

          int a[N]={11,12,15,18,19,22,25,29};

          head=creatlist(a);

          printf("\nThe list before inserting:\n"); outlist(head);

          printf("\nEnter a number : "); scanf("%d",&x);

          fun(head,x);

          printf("\nThe list after inserting:\n"); outlist(head);

          }

          【參考答案】

          (1)x  (2)p  (3)s

          11.下列給定程序中,函數(shù)fun的功能是:將形參a所指數(shù)組中的前半部分元素中的值與后半部分元素中的值對(duì)換。形參n中存放數(shù)組中數(shù)據(jù)的個(gè)數(shù),若n為奇數(shù),則中間的元素不動(dòng)。

          例如:若a所指數(shù)組中的數(shù)據(jù)為:1、2、3、4、5、6、7、8、9,則調(diào)換后為:6、7、8、9、5、1、2、3、4。

          請(qǐng)?jiān)谙聞澗處填入正確的內(nèi)容并將下劃線刪除,使程序得出正確的結(jié)果。

          注意:部分源程序在文件BLANK1.C中。

          不得增行或刪行,也不得更改程序的結(jié)構(gòu)!

          #include

          #define N 9

          void fun(int a[], int n)

          { int i, t, p;

          /**********found**********/

          p = (n%2==0)?n/2:n/2+___1___;

          for (i=0; i

          {

          t=a[i];

          /**********found**********/

          a[i] = a[p+___2___];

          /**********found**********/

          ___3___ = t;

          }

          }

          main()

          { int b[N]={1,2,3,4,5,6,7,8,9}, i;

          printf("\nThe original data :\n");

          for (i=0; i

          printf("\n");

          fun(b, N);

          printf("\nThe data after moving :\n");

          for (i=0; i

          printf("\n");

          }

          【參考答案】

          (1)1  (2) i  (3) a[p+i]或*(a+p+i)

          12.下列給定程序中,函數(shù)fun的功能是:從形參ss所指字符串?dāng)?shù)組中,刪除所有串長(zhǎng)超過k的字符串,函數(shù)返回剩余字符串的個(gè)數(shù)。ss所指字符串?dāng)?shù)組中共有N個(gè)字符串,且串長(zhǎng)小于M。

          請(qǐng)?jiān)谙聞澗處填入正確的內(nèi)容并將下劃線刪除,使程序得出正確的結(jié)果。

          注意:部分源程序在文件BLANK1.C中。

          不得增行或刪行,也不得更改程序的結(jié)構(gòu)!

          #include

          #include

          #define N 5

          #define M 10

          int fun(char (*ss)[M], int k)

          { int i,j=0,len;

          /**********found**********/

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

          { len=strlen(ss[i]);

          /**********found**********/

          if(len<= __2__)

          /**********found**********/

          strcpy(ss[j++],__3__);

          }

          return j;

          }

          main()

          { char x[N][M]={"Beijing","Shanghai","Tianjing","Nanjing","Wuhan"};

          int i,f;

          printf("\nThe original string\n\n");

          for(i=0;i

          f=fun(x,7);

          printf("The string witch length is less than or equal to 7 :\n");

          for(i=0; i

          }

          【參考答案】

          (1) N  (2) k  (3) ss[i]

          13.下列給定程序中,函數(shù)fun的功能是:把形參s所指字符串中下標(biāo)為奇數(shù)的字符右移到下一個(gè)奇數(shù)位置,最右邊被移出字符串的字符繞回放到第一個(gè)奇數(shù)位置,下標(biāo)為偶數(shù)的字符不動(dòng)(注:字符串的長(zhǎng)度大于等于2)。

          例如,形參s所指字符串為abcdefgh,執(zhí)行結(jié)果為ahcbedgf。

          請(qǐng)?jiān)谙聞澗處填入正確的內(nèi)容并將下劃線刪除,使程序得出正確的結(jié)果。

          注意:部分源程序在文件BLANK1.C中。

          不得增行或刪行,也不得更改程序的結(jié)構(gòu)!

          #include

          void fun(char *s)

          { int i, n, k; char c;

          n=0;

          for(i=0; s[i]!='\0'; i++) n++;

          /**********found**********/

          if(n%2==0) k=n-___1___ ;

          else k=n-2;

          /**********found**********/

          c=___2___ ;

          for(i=k-2; i>=1; i=i-2) s[i+2]=s[i];

          /**********found**********/

          s[1]=___3___ ;

          }

          main()

          { char s[80]="abcdefgh";

          printf("\nThe original string is : %s\n",s);

          fun(s);

          printf("\nThe result is : %s\n",s);

          }

          【參考答案】

          (1) 1  (2) s[k]或*(s+k)  (3) c

          14.下列給定程序中,函數(shù)fun的功能是:在形參ss所指字符串?dāng)?shù)組中查找與形參t所指字符串相同的串,找到后返回該串在字符串?dāng)?shù)組中的位置(即下標(biāo)值),若未找到則返回-1。ss所指字符串?dāng)?shù)組中共有N個(gè)內(nèi)容不同的字符串,且串長(zhǎng)小于M。

          請(qǐng)?jiān)谙聞澗處填入正確的內(nèi)容并將下劃線刪除,使程序得出正確的結(jié)果。

          注意:部分源程序在文件BLANK1.C中。

          不得增行或刪行,也不得更改程序的結(jié)構(gòu)!

          #include

          #include

          #define N 5

          #define M 8

          int fun(char (*ss)[M],char *t)

          { int i;

          /**********found**********/

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

          /**********found**********/

          if(strcmp(ss[i],t)==0 ) return __2__ ;

          return -1;

          }

          main()

          { char ch[N][M]={"if","while","switch","int","for"},t[M];

          int n,i;

          printf("\nThe original string\n\n");

          for(i=0;i

          printf("\nEnter a string for search: "); gets(t);

          n=fun(ch,t);

          /**********found**********/

          if(n== __3__) printf("\nDon't found!\n");

          else printf("\nThe position is %d .\n",n);

          }

          【參考答案】

          (1)N  (2)i  (3) -1

          15.下列給定程序中已建立了一個(gè)帶頭結(jié)點(diǎn)的單向鏈表,在main函數(shù)中將多次調(diào)用fun函數(shù),每調(diào)用一次,輸出鏈表尾部結(jié)點(diǎn)中的數(shù)據(jù),并釋放該結(jié)點(diǎn),使鏈表縮短。

          請(qǐng)?jiān)谙聞澗處填入正確的內(nèi)容并將下劃線刪除,使程序得出正確的結(jié)果。

          注意:部分源程序在文件BLANK1.C中。

          不得增行或刪行,也不得更改程序的結(jié)構(gòu)!

          #include

          #include

          #define N 8

          typedef struct list

          { int data;

          struct list *next;

          } SLIST;

          void fun( SLIST *p)

          { SLIST *t, *s;

          t=p->next; s=p;

          while(t->next != NULL)

          { s=t;

          /**********found**********/

          t=t->___1___;

          }

          /**********found**********/

          printf(" %d ",___2___);

          s->next=NULL;

          /**********found**********/

          free(___3___);

          }

          SLIST *creatlist(int *a)

          { SLIST *h,*p,*q; int i;

          h=p=(SLIST *)malloc(sizeof(SLIST));

          for(i=0; i

          { q=(SLIST *)malloc(sizeof(SLIST));

          q->data=a[i]; p->next=q; p=q;

          }

          p->next=0;

          return h;

          }

          void outlist(SLIST *h)

          { SLIST *p;

          p=h->next;

          if (p==NULL) printf("\nThe list is NULL!\n");

          else

          { printf("\nHead");

          do { printf("->%d",p->data); p=p->next; } while(p!=NULL);

          printf("->End\n");

          }

          }

          main()

          { SLIST *head;

          int a[N]={11,12,15,18,19,22,25,29};

          head=creatlist(a);

          printf("\nOutput from head:\n"); outlist(head);

          printf("\nOutput from tail: \n");

          while (head->next != NULL){

          fun(head);

          printf("\n\n");

          printf("\nOutput from head again :\n"); outlist(head);

          }

          }

          【參考答案】

          (1)next  (2) t->data  (3) t


        更多計(jì)算機(jī)二級(jí)相關(guān)試題推薦:

        1.2016年9月計(jì)算機(jī)二級(jí)C語(yǔ)言試題題庫(kù)

        2.計(jì)算機(jī)二級(jí)C語(yǔ)言筆試歷年真題及答案

        3.2016下半年計(jì)算機(jī)二級(jí)C語(yǔ)言考試試題及答案

        4.計(jì)算機(jī)二級(jí)C語(yǔ)言新增無紙化真題試卷

        5.2016年9月計(jì)算機(jī)二級(jí)C語(yǔ)言選擇題及答案

        6.2016下半年計(jì)算機(jī)二級(jí)C語(yǔ)言預(yù)測(cè)試題及答案

        7.計(jì)算機(jī)二級(jí)C語(yǔ)言試題及答案2016

        8.計(jì)算機(jī)二級(jí)C語(yǔ)言考試上機(jī)沖刺試題及答案

        9.計(jì)算機(jī)二級(jí)c語(yǔ)言題庫(kù)2016

        10.9月計(jì)算機(jī)二級(jí)c語(yǔ)言試題及答案

        【下半年計(jì)算機(jī)C語(yǔ)言考試題庫(kù)及答案】相關(guān)文章:

        2017年計(jì)算機(jī)二級(jí)c語(yǔ)言題庫(kù)及答案06-18

        計(jì)算機(jī)C語(yǔ)言試題及答案08-10

        2017年計(jì)算機(jī)二級(jí)c題庫(kù)及答案06-16

        職稱計(jì)算機(jī)考試EXCEL題庫(kù)及答案06-21

        2017計(jì)算機(jī)二級(jí)考試C語(yǔ)言習(xí)題及答案08-30

        全國(guó)計(jì)算機(jī)c語(yǔ)言程序設(shè)計(jì)題庫(kù)201708-28

        2017年計(jì)算機(jī)二級(jí)c語(yǔ)言題庫(kù)08-30

        計(jì)算機(jī)考試題庫(kù)及答案06-06

        計(jì)算機(jī)二級(jí)C語(yǔ)言考試上機(jī)沖刺試題及答案08-19

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