2009年9月全国计算机等级考试二级笔试试卷.docx
2009年9月全国计算机等级考试二级笔试试卷12)以下选项中,能用作用户标识符的是 CA)void B)8_8 C)_0_ D)unsigned13)阅读以下程序#include <stdio.h>main() int case; float printF; printf(“请输入2个数:”);scanf(“%d %f”,&case,&pjrintF); printf(“%d %fn”,case,printF);该程序编译时产生错误,其出错原因是 AA)定义语句出错,case是关键字,不能用作用户自定义标识符B)定义语句出错,printF不能用作用户自定义标识符C)定义语句无错,scanf不能作为输入函数使用 D)定义语句无错,printf不能输出case的值14)表达式:(int)(double)9/2)-(9)%2的值是 BA)0 B)3 C)4 D)515)若有定义语句:int x=10;,则表达式x-=x+x的值为 BA)-20B)-10C)0D)1016)有以下程序#include <stdio.h>main() int a=1,b=0;printf(“%d,”,b=a+b);printf(“%dn”,a=2*b); 程序运行后的输出结果是 DA)0,0 B)1,0 C)3,2 D)1,217)设有定义:int a=1,b=2,c=3;,以下语句中执行效果与其它三个不同的是 CA)if(a>b) c=a,a=b,b=c; B)if(a>b) c=a,a=b,b=c; C)if(a>b) c=a;a=b;b=c; D)if(a>b) c=a;a=b;b=c;18)有以下程序 #include <stdio.h> main() int c=0,k; for (k=1;k<3;k+) switch (k) default: c+=k case 2: c+;break; case 4: c+=2;break; printf(“%dn”,c); 程序运行后的输出结果是 A A)3 B)5 C)7 D)919)以下程序段中,与语句:k=a>b?(b>c?1:0):0;功能相同的是 AA)if(a>b)&&(b>c) k=1;else k=0;B)if(a>b)|(b>c) k=1;else k=0;C)if(a<=b) k=0;else if(b<=c) k=1; D)if(a>b) k=1;else if(b>c) k=1; else k=0;20)有以下程序 #include <stdio.h> main() char s=“012xy”;int i,n=0; for(i=0;si!=0;i+) if(si>=a&&si<=z) n+; printf(“%dn”,n); 程序运行后的输出结果是 B A)0 B)2 C)3 D)521)有以下程序 #include <stdio.h> main() int n=2,k=0; while(k+&&n+>2); printf(“%d %dn”,k,n); 程序运行后的输出结果是 D A)0 2 B)1 3 C)5 7 D)1 222)有以下定义语句,编译时会出现编译错误的是 A A)char a=a B)char a=n; C)char a=aa; D)char a=x2d; 23)有以下程序#include <stdio.h>main() char c1,c2; c1=A+8-4; c2=A+8-5; printf(“%c,%dn”,c1,c2); 已知字母A的ASCII码为65,程序运行后的输出结果是 A A)E,68 B)D,69 C)E,D D)输出无定值24)有以下程序 #include <stdio.h> void fun(int p) int d=2; p=d+; printf(“%d”,p); main() int a=1; fun(a); printf(“%dn”,a); 程序运行后的输出结果是 C A)32 B)12 C)21 D)2225)以下函数findmax拟实现在数组中查找最大值并作为函数值返回,但程序中有错导致不能实现预定功能#define MIN -2147483647 int findmax (int x,int n) int i,max; for(i=0;i<n;i+) max=MIN; if(max<xi) max=xi; return max; 造成错误的原因是 DA)定义语句int i,max;中max未赋初值 B)赋值语句max=MIN;中,不应给max赋MIN值C)语句if(max<xi) max=xi;中判断条件设置错 D)赋值语句max=MIN;放错了位置(26)有以下程序 #include <stdio.h> main() int m=1,n=2,*p=&m,*q=&n,*r; r=p;p=q;q=r; printf(“%d,%d,%d,%dn”,m,n,*p,*q); 程序运行后的输出结果是 BA)1,2,1, B)1,2,2,1 C)2,1,2, D)2,1,1,227)若有定义语句:int a410,*p,*q4;且0i<4,则错误的赋值是 AA)p=a B)qi=ai C)p=ai D)p=&a2128)有以下程序 #include <stdio.h> #include<string.h> main() char str 20=“One*World”, “One*Dream!”,*p=str1; printf(“%d,”,strlen(p);printf(“%sn”,p); 程序运行后的输出结果是 CA)9,One*World B)9,One*Dream C)10,One*Dream D)10,One*World29)有以下程序 #include <stdio.h> main() int a =2,3,5,4,i; for(i=0;i<4;i+) switch(i%2) case 0:switch(ai%2) case 0:ai+;break; case 1:ai-; break; case 1:ai=0;for(i=0;i<4;i+) printf(“%d”,ai); printf(“n”); C A)3 3 4 4 B)2 0 5 0 C)3 0 4 0 D)0 3 0 430)有以下程序 #include <stdio.h>#include<string.h> main() char a10=”abcd”;printf(“%d,%dn”,strlen(a),sizeof(a); 程序运行后的输出结果是 BA)7,4 B)4,10 C)8,8 D)10,1031)下面是有关C语言字符数组的描述,其中错误的是 DA)不可以用赋值语句给字符数组名赋字符串 B)可以用输入语句把字符串整体输入给字符数组C)字符数组中的内容不一定是字符串 D)字符数组只能存放字符串32)下列函数的功能是 A fun(char * a,char * b) while(*b=*a)!=0) a+,b+; A)将a所指字符串赋给b所指空间 B)使指针b指向a所指字符串 C)将a所指字符串和b所指字符串进行比较D)检查a和b所指字符串中是否有033)设有以下函数 Avoid fun(int n,char * s) 则下面对函数指针的定义和赋值均是正确的是 A)void (*pf)(); pf=fun; B)viod *pf(); pf=fun; C)void *pf(); *pf=fun; D)void (*pf)(int,char);pf=&fun;(34)有以下程序 #include <stdio.h> int f(int n); main() int a=3,s; s=f(a);s=s+f(a);printf(“%dn”,s); int f(int n) static int a=1; n+=a+; return n; 程序运行以后的输出结果是 C A)7 B)8 C)9 D)1035)有以下程序 #include <stdio.h> #define f(x) x*x*x main() int a=3,s,t; s=f(a+1);t=f(a+1); printf(“%d,%dn,s,t); 程序运行后的输出结果是 A A)10,64 B)10,10 C)64,10 D)64,6436)下面结构体的定义语句中,错误的是 BA)struct ord int x;int y;int z; struct ord a; B)struct ord int x;int y;int z; struct ord a;C)struct ord int x;int y;int z; a; D)struct int x;int y;int z; a;37)设有定义:char *c;,以下选项中能够使字符型指针c正确指向一个字符串的是 AA)char str =”string”;c=str; B)scanf(“%s”,c); C)c=getchar(); D)*c=”string”;38)有以下程序 #include <stdio.h> #include<string.h> struct A int a; char b10; double c; struct A f(struct A t); main() struct A a=1001,”ZhangDa”,1098.0; a=f(a);jprintf(“%d,%s,%6.1fn”,a.a,a.b,a.c); struct A f(struct A t) ( t.a=1002;strcpy(t.b,”ChangRong”);t.c=1202.0;return t; ) 程序运行后的输出结果是 DA)1001,ZhangDa,1098.0 B)1001,ZhangDa,1202.0 C)1001,ChangRong,1098.0 D)1001,ChangRong,1202.039)若有以下程序段 int r=8; printf(“%dn”,r>>1);输出结果是 C A)16 B)8 C)4 D)240)下列关于C语言文件的叙述中正确的是 A)文件由一系列数据依次排列组成,只能构成二进制文件B)文件由结构序列组成,可以构成二进制文件或文本文件C)文件由数据序列组成,可以构成二进制文件或文本文件 D)文件由字符序列组成,其类型只能是文本文件二、填空题(每空2分,共30分)6)若有定义语句:int a=5;,则表达式:a+的值是。7)若有语句double x=17;int y;,当执行y=(int)(x/5)%2;之后y的值为。8)以下程序运行后的输出结果是 空 。#include <stdio.h>main() int x=20; printf(“%d”,0<x<20); printf(“%dn”,0<x&&x<20); 9)以下程序运行后的输出结果是。#include <stdio.h>main() int a=1,b=7; do b=b/2;a+=b; while (b>1); printf(“%dn”,a);10)有以下程序#include <stdio.h>main() int f,f1,f2,i; f1=0;f2=1; printf(“%d %d”,f1,f2); for(i=3;i<=5;i+) f=f1+f2; printf(“%d”,f); f1=f2; f2=f; printf(“n”); 程序运行后的输出结果是。11)有以下程序#include <stdio.h>int a=5;void fun(int b) int a=10; a+=b;printf(“%d”,a);main() int c=20; fun(c);a+=c;printf(“%dn”,a); 程序运行后的输出结果是空格。12)设有定义:struct person int ID;char name12;p; 请将scanf(“%d”, );语句补充完整,使其能够为结构体变量p的成员ID正确读入数据。13)有以下程序#include <stdio.h>main() char a20=”How are you?”,b20; scanf(“%s”,b);printf(“%s %sn”,a,b); 程序运行时从键盘输入:How are you?<回车> 则输出结果为HOW.ARE.YOU.HOW。14)有以下程序#include <stdio.h>typedef struct int num;double sREC;void fun1( REC x )x.num=23;x.s=88.5;main() REC a=16,90.0 ; fun1(a); printf(“%dn”,a.num);程序运行后的输出结果是 15)有以下程序#include <stdio.h>fun(int x) if(x/2>0) run(x/2); printf(“%d ”,x);main() fun(6);printf(“n”); 程序运行后的输出结果是。