亚洲精品中文字幕无乱码_久久亚洲精品无码AV大片_最新国产免费Av网址_国产精品3级片

試題

計算機(jī)二級考試C語言模擬試題二參考答案

時間:2024-08-02 16:17:36 試題 我要投稿
  • 相關(guān)推薦

2015年計算機(jī)二級考試C語言模擬試題(二)參考答案

  第一題:

2015年計算機(jī)二級考試C語言模擬試題(二)參考答案

  1 A 2B 3D 4C 5C 6C 7C 8D 9D 10A

  11D 12D 13B 14A 15C 16C 17A 18A 19C 20A

  第二題:

  1√ 2Ⅹ 3√ 4Ⅹ 5√ 6√ 7√ 8√ 9√ 10√

  第三題:

  1 #號

  2 0

  3 ch!=’\n’ ch>=’0’ && ch<=’9’

  4 從鍵盤上輸入一個字符。

  5 指針變量p為整型

  6 FILE *fp

  7 9

  第四題:

  1 printf("%d,",&a); if (a==1)

  2 12

  3 s=s+1.0/n

  4. 3 4 5

  5 1 2 5

  第五題:

  1.

  #include "stdio.h"

  main()

  { long t=1;

  int i;

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

  t=t*i;

  printf("%ld",t); }

  2

  #include "stdio.h"

  main()

  { int i;

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

  { if(i==0)

  continue;

  printf("%d ",i);

  }

  3.

  #include "stdio.h"

  main()

  { int i,j,a[10];

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

  scanf("%d",&a[i]);

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

  for(j=9;j>i;j--)

  if(a[j-1]{ t=a[j-1];

  a[j-1]=a[j];

  a[j]=t; }

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

  printf("%d",a[i]);

  }

  4.

  #include "stdio.h"

  main()

  { int a[3][3],i,j,s=0;

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

  for(j=0;j<3;j++)

  scanf("%d",&a[i][j]);

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

  { for(j=0;j<3;j++)

  printf(“%d ”,a[i][j] );

  printf(“\n”);

  }

  }

  5.

  #include "stdio.h"

  main()

  { int c;

  FILE *fp;

  fp=open("read.txt","r");

  c=fgetc(fp);

  while(c!='\n')

  { putchar(c);

  c=fgetcr(fp);

  } }

  fclose(); }

【計算機(jī)二級考試C語言模擬試題二參考答案】相關(guān)文章:

計算機(jī)二級C語言模擬試題及答案07-04

9月計算機(jī)考試二級C語言模擬試題11-01

計算機(jī)二級C++模擬試題及答案09-22

2017年計算機(jī)二級模擬試題及答案(C語言)09-19

2024年計算機(jī)二級C語言模擬試題及答案10-29

計算機(jī)二級考試C語言模擬練習(xí)題07-23

2024年計算機(jī)二級《C語言》模擬考試題10-24

2015年計算機(jī)二級考試C語言模擬試題(四)附答案10-11

全國計算機(jī)等級考試二級C語言試題二09-18

計算機(jī)二級《C語言》考試沖刺試題及答案202410-30