the principle of simplified EIA of construction projects in the region. In terms of land, linked to the implementation of urban and rural construction land increase and decrease, replacement indicators for priority areas project. Charges, into the projects of water, electricity, administrative charges and preferential policies. In the area of taxation, and settled in areas of industry and its production company, within 5 years after the completion of fiscal incentives to enterprises. In terms of financing, integration of land, tax, financial and other resources, and construct "Government credit + business credit" credit system, establishment of marketization, commercialization and modernization of the investment and financing platform; effective Bank-enterprise docking, encourages private capital into the Park, to raise industry development fund. 5, optimize the environment and service industries. To create "policy lowlands, Highlands, integrity of service land, development land" as the goal, to optimize the area under development environment. All administrative law enforcement departments to appoint a full-time personnel stationed in areas dedicated to coordinating and solving problems associated with businesses in this sector. When there are substantial issues, sector leaders arranged to personally intervene, in-person, in-person push tangible area building a green light, easy line. To further reduce and standardize administrative examination and approval items, simplify examination and approval links, improve efficiency; according to the ...
Since the educational practice of the mass line of the party, himself seriously in the education, practical control central "eight rules" and opposing "the four winds" and practicing "three Suns", and check the spirit of Jiao Yulu, ideology, solicit opinions based on outstanding problems checked swing, careful analysis and reflection. Will now check report is as follows: first, adherence to the party's political discipline, eight in the central provision, change the style of the basic situation of 1, in compliance with the party's political disciplines. Conscientiously abide by the party's political discipline, abide by the Constitution and the rules and regulations of the party, in the political, ideological and maintain highly consistent with the CPC Central Committee on the action, there is no violation of the party's political discipline problems. 2, in the implementation of the central authorities of the eight provisions. Improving research, improving research methods, but there are less grass-roots units, primary first-hand an inadequate grasp of the problem, which is to be strengthened in the future. Second, construction, strictly in accordance with the provisions to streamline and improve the quality of meetings of the Conference. Third, streamlining file briefs, culture involves all aspects of propaganda and ideology, sometimes due to the practical needs of invention notifications, this area needs further
streamlining. Four are standard visits, except as required to participate in training, no other activity. Fi
ve is to improve news reporting, for propaganda work strictly according to the regulations. Six is strictly your presentation published strictly according to the regulations. Seven is strictly thrift, required the use of vehicles and office space and corporate hospitality. 3, change the style. Propaganda and ideological work of the new situation and new requirements of the new tasks, had done a lot of fruitful work, has made many achievements, but further closer to the grass roots, close to reality, close to the masses and also inadequate innovation must continue to improve. Second, the "four winds" some outstanding issues 1, oppose formalism. One theory is that he didn't, with less close contact. Theoretical study of consciousness is not high enough, system performance is not strong enough; more passive learning, active learning few generalities and learn more, delving into less. Especially based on rational thinking on major issues, applying theory to guide the work done is not good enough, not really understand and grasp the spirit and essence of the scientific Outlook on development, did not truly achieve mastery, to apply, to a certain extent, affect the development and implementation of ideas and initiatives. Second, work arrangements, and less supervision. Propaganda and ideological work is the objective, which needs to keep the continuity efforts deployed, but stressed in the work time, less supervision. For example, color weekends in the summer theatrical activities, city square performances, urging townships, communities and rural areas shows the implementation is inadequate, insufficient cultural an educational role to play. Third
base enough, master grass-less real. Propaganda and ideological work in the new situation of characteristics and regularity of enough, deep enough for grass-roots public opinion Dynamics survey, for grass-roots typically drive less. For example, rural culture team active, ... I'm not actively take the initiative to take up, the lack of spirit of daring to, resulting in some job had a lot of power, but no tangible results. Third, innovation, lack of motivation. Emancipation did not end, innovation does not exist. In practical work, not your head, previous work experience, lack of innovation initiatives, study on the characteristics of propaganda and ideological work under the new situation through, grip on grassroots ideological trends and changes are not deep, to promote new initiatives and explore new methods of ideological and cultural work is not much, and some lack of relevance and timeliness. 4, discipline, lowering, and hard work are lacking. While working and enterprising spirit down. No real solution to treat yourself right, correctly treat past honors, their complacency, and work to see their scores more, less checking his own shortcomings, like to listen to the praise, satisfied face, online promotion, there are typical, and lack of high standards and strict requirements, the effect is real. Second hard drive less. On hard and
一 单项选择题(每题2分,共44分)
1 以下叙述正确的是__C _。
A C 程序基本组成单位是语句
B
C 程序每一行只能写一个语句
C 简单C 语句必须以分号作为结束符
D 注释语句可以嵌套
2 一个C 语言程序是从_B __开始执行的。
A 程序中第一个函数
B 名为main 的函数
C 包含文件(头文件)的第一个函数
D 程序中的第一个语句
3 请选出合法的C 语言赋值语句_B __。
A a=b=58
B i++;
C a=58,b=58
D k=int(a+b);
4 下面标识符中,合法的用户标识符是 _B __。
A 1abc
B include
C a-b-c123
D char
5 以下所列的C 语言整形常量中,正确的是_A __。
A 0x10
B 0976
C 076L
D 01ff
6 C 语言中下列运算符的操作数必须为整型的是_A __。
A %
B ++
C /
D =
7 设a 和b 均为int 型变量,则执行以下语句后的输出为_B __。
int a=20; int b=3; printf("%d\n ",a+=(b%=2));
A 20
B 21
C 0
D 23
8 已知int i;,则执行语句 i=2.6;后,i 的值为_A __。
A 2
B 3
C 2.6
D 不确定
9 以下合法的字符常量为_D __。
A 'ab '
B '\482'
C '\'
D '\xaf '
10 若y 为int 型变量,则执行以下语句后,y 的值是 _C __。
y=8; y+=y-=y*y;
A 64
B –56
C –112
D –48
11 以下合法的浮点型常量是_D __。
A e-3
B 1.5e+2.4
C 3.14e+2L
D 3.14 e +5
12 设int 数据占用两个字节,float 数据占用四个字节,double 数据占用8个字节,且已
知float a=2;int b=3;则执行下列语句输出为__A _。
printf("%d ",sizeof(a*b)+2/5);
A 4
B 8
C 6
D 7
13 设int 型占2个字节,且int i=-2;,则语句printf("%u ",i);的输出结果为_C __。
A 0
B -2
C 65534
D 65535
14 若x 、y 、z 均为整型常量,且a=100,则执行下列语句后的z 值为_A _。
x=a++; y=--a; z=x+y-a--;
A 100
B 400
C 200
D 300
15 若有以下定义和语句:int u=010,v=0x10,w=10,printf("%d,%d,%d\n ",u,v,w);,则输
出结果是_A __。
A 8,16,10
B 10,10,10
C 8,8,10
D 8,10,10
16 设x 、y 为int 型变量,则执行下列语句后,y 的值是__A _。
x=5; y=x++*x++; y=--y*--y;
A 529
B 2401
C 1209
D 625
17 假设在程序中a,b,c 均被定义成整型,并且已赋大于1的值,则下列能正确表示代数
式abc
1的表达式是__D __。
A 1/a*b*c
B 1/(a*b*c)
C 1/a/b/(float)c
D 1.0/a/b/c
18 若有定义:int a=8,b=5,c;char d='A';,则执行语句c=a/b+d%a+0.5;后c的值为_A__。
A 2
B 2.5
C 3
D 类型不一致,无法计算,编译出错
19 在有以下程序:
main()
{ int i=10,j=1;
i=i+j++;
printf("%d,%d,%d\n",i++,++j,i);
}
执行后输出结果是_C_。
A 12,3,11
B 12,2,11
C 11,3,11
D 12,3,12
20 已知int i=65;,则putchar(i);printf("%d",i);printf("%c",i);的输出结果为_A__。
A A,65,A
一个完整的c语言程序B 65,65,A
C A,A,65
D A,A,A
21 已知int y,a,i=1;则语句printf("%d,%d",-i++,(y=a=3.6*3));的输出结果为_A__。
A -1,10
B -2,1.8
C 0,3
D 1,18
22 有以下程序:
main()
{ char a,b,c,d;
a='\'; b='\xbc';
c='\0xab'; d='\023';
printf("%c%c%c%c\n",a,b,c,d);
}
编译时出现错误,以下叙述中正确的是_A__。
A 程序中只有a='\';语句不正确
B b='\xbc';语句不正确
C d='\023';语句不正确
D a='\';和c='\0xab';语句都不正确
二填空题(第1题2分,其余每题3分,共56分)
1 设x为int型变量,请写出描述“x是偶数”的表达式是_x%2==0__。
2 已知scanf("a=%d,b=%d,c=%d",&a,&b,&c);,若从键盘输入2、3、4三个数分别作为变
量a、b、c的值则正确的输入形式是_a=2,b=3,c=4__。
3 设有语句int a=3;,则执行了语句 a+=a-=a*a后,变量a的值是_-12__。
4 以下程序的输出结果是_10 6__。
main()
{ int a=-10,b=-3;
printf("%d\n",-a++);
printf("%d\n",-a+b);
}
5 以下程序的输出结果是_242__。
main()
1
{ char c;
c=0362;
printf("%d\n",c);
}
6 以下程序段(n所赋的是八进制数)执行后输出结果是32767_32767__。
int m=32767,n=032767; printf("%d,%o\n",m,n);
7 字符串"\\name\\\101ddress\b\xaf"的长度为:_15__。
8有以下程序段:
int m=0,n=0; char c='a';
scanf("%d%c%d",&m,&c,&n);
printf("%d,%c,%d\n",m,c,n);
若从键盘上输入:10A10<;回车>,则输出结果是_10,A,10__。
9 以下程序的输出结果是___。
main()
{ printf("%d,%o,%x\n",10,10,10);
printf("%d,%d,%d\n",10,010,0x10);
printf("%d,%x\n",012,012);
}
10 设a、b、c为整形变量,且a=2、b=3、c=4,则执行完语句 a*=16+(b++)-(++c);之后,
变量a的值为_28_。
11 以下程序的输出结果为__12_。
main()
{ int x=023;
printf("%x\n",--x);
}
12 以下程序的结果为___。
main()
{ int a=2,b=3,c,d;
c=(a++)+(a++)+(a++);
d=(++b)+(++b)+(++b);
printf("a=%d c=%d\n",a,c);
printf("b=%d d=%d\n",a,d);
}
13 以下程序
main()
{ char ch1,ch2,ch3;
scanf("%c%c%c",&ch1,&ch2,&ch3);
printf("%c%c%c%c%c",ch1,'#',ch2,'#',ch3);
}
当输入ABC时运行结果为【1】,当输入A BC时运行结果为【2】。
14 若有定义:float x;,以下程序段的输出结果是___。
x=5.16894;
printf("%f\n",(int)(x*1000+0.5)/(float)1000);
15 以下程序的功能是:输入一个小写字母,输出对应的大写字母,将程序补充完整。
streamlining. Four are standard visits, except as required to participate in training, no other activity. Five is to improve news reporting, for propaganda work strictly according to the regulations. Six is strictly your presentation published strictly according to the regulations. Seven is strictly thrift, required the use of vehicles and office space and corporate hospitality. 3, change the style. Propaganda and ideological work of the new situation and new requirements of the new tasks, had done a lot of fruitful work, has made many achievements, but further closer to the grass roots, close to reality, close to the masses and also inadequate innovation must continue to improve. Second, the "four winds" some outstanding issues 1, oppose formalism. One theory is that he didn't, with less close contact. Theoretical study of consciousness is not high enough, system performance is not strong enough; more passive learning, active learning few generalities and learn more, delving into less. Especially based on rational thinking on major issues, applying theory to guide the work done is not good enough, not really understand and grasp the spirit and essence of the scientific Outlook on
development, did not truly achieve mastery, to apply, to a certain extent, affect the development and implementation of ideas and initiatives. Second, work arrangements, and less supervision. Propaganda and ideological work is the objective, which needs to keep the continuity efforts deployed, but stressed in the work time, less supervision. For example, color weekends in the summer theatrical activities, city square performances, urging townships, communities and rural areas shows the implementation is inadequate, insufficient cultural an educational role to play. Third base enough, master grass-less real. Propaganda and ideological work in the new situation of characteristics and regularity of enough, deep enough for grass-roots public opinion Dynamics survey, for grass-roots typically
drive less. For example, rural culture team active, ... I'm not actively take the initiative to take up, the lack of spirit of daring to, resulting in some job had a lot of power, but no tangible results. Third, innovation, lack of motivation. Emancipation did not end, innovation does not exist. In practical work, not your head, previous work experience, lack of innovation initiatives, study on the characteristics of propaganda and ideological work under the new situation through, grip on grassroots ideological trends and changes are not deep, to promote new initiatives and explore new methods of ideological and cultural work is not much, and some lack of relevance and timeliness. 4,
discipline, lowering, and hard work are lacking. While working and enterprising spirit down. No real solution to treat yourself right, correctly treat past honors, their complacency, and work to see their scores more, less checking his own shortcomings, like to listen to the praise, satisfied face, online promotion, there are typical, and lack of high standards and strict requirements, the effect is real. Second hard drive less. On hard and2
main()
{ char ch;
【1】 /* 从键盘输入一个小写字母 */
【2】 /* 将该字母转换为大写字母 */
【3】 /* 输出转换后的结果 */
}
16 当运行以下程序时,在键盘上从第一列开始输入9876543210↙(此处↙代表回车),则
程序的输出结果是___。
main()
{ int a; float b,c;
scanf("%2d%3f%4f",&a,&b,&c);
printf("\na=%d,b=%f,c=%f\n",a,b,c);
}
17 以下程序的运行结果是___。
main()
{ printf("%12.5f\n",123.1234567);
printf("%12f\n",123.1234567);
printf("%12.8d\n",12345);
printf("%12.8s\n","abcdefghij");
}
18 运行以下程序时,如从键盘上输入abcdefg↙,则输出结果是___。
main()
{ char ch1,ch2,ch3;
ch1=getchar(); ch2=getchar(); ch3=getchar();
putchar(ch1); putchar(ch2); putchar(ch3);
putchar('\n');
}
19 运行以下程序时,如从键盘上输入:a=3,b=5↙35,35.12↙abc↙后,结果是___。
main()
{ int a,b; float x,y; char c1,c2;
scanf("a=%d,b=%d",&a,&b);
scanf("%f,%e",&x,&y);
scanf("%c%c%c",&c1,&c1,&c2);
printf("a=%d,b=%d,x=%f,y=%f,c1=%c,c2=%c\n",a,b,x,y,c1,c2);
}
顺序、选择结构程序设计
一单项选择题(每题2分,共40分)
1 以下程序运行后的输出结果是_B_。
main()
{ int a=0,b=0;
a=10; b=20; printf("a+b=%d\n",a+b);
streamlining. Four are standard visits, except as required to participate in training, no other activity. Five is to improve news reporting, for propaganda work strictly according to the regulations. Six is strictly your presentation published strictly according to the regulations. Seven is strictly thrift, required the use of vehicles and office space and corporate hospitality. 3, change the style. Propaganda and ideological work of the new situation and new requirements of the new tasks, had done a lot of fruitful work, has made many achievements, but further closer to the grass roots, close to reality, close to the masses and also inadequate innovation must continue to improve. Second, the "four winds" some outstanding issues 1, oppose formalism. One theory is that he didn't, with less close contact. Theoretical study of consciousness is not high enough, system performance is not strong enough; more passive learning, active learning few generalities and learn more, delving into less. Especially based on rational thinking on major issues, applying theory to guide the work done is not good enough, not really understand and grasp the spirit and essence of the scientific Outlook on development, did not truly achieve mastery, to apply, to a certain extent, affect the development and implementation of ideas and initiatives. Second, work arrangements, and less supervision. Propaganda and ideological work is the objective, which needs to keep the continuity efforts deployed, but stressed in the work time, less supervision. For example, color weekends in the summer theatrical activities, city square performances, urging townships, communities and rural area
s shows the implementation is inadequate, insufficient cultural an educational role to play. Third base enough, master grass-less real. Propaganda and ideological work in the new situation of characteristics and regularity of enough, deep enough for grass-roots public opinion Dynamics survey, for grass-roots typically drive less. For example, rural culture team active, ... I'm not actively take the initiative to take up, the lack of spirit of daring to, resulting in some job had a lot of power, but no tangible results. Third, innovation, lack of motivation. Emancipation did not end, innovation does not exist. In practical work, not your head, previous work experience, lack of innovation initiatives, study on the characteristics of propaganda and ideological work under the new situation through, grip on grassroots ideological trends and changes are not deep, to promote new initiatives and explore new methods of ideological and cultural work is not much, and some lack of relevance and timeliness. 4, discipline, lowering, and hard work are lacking. While working and enterprising spirit down. No real solution to treat yourself right, correctly treat past honors, their complacency, and work to see their scores more, less checking his own shortcomings, like to listen to the praise, satisfied face, online promotion, there are typical, and lack of high standards and strict requirements, the effect is real. Second hard drive less. On hard and3
}
A a+b=10
B a+b=30
C 30
D 出错
2 以下程序运行后的输出结果是_C__。
main()
{ double d=3.2; int x,y;
x=1.2; y=(x+3.8)/5.0;
printf("%d\n",d*y);
}
A 3
B 3.2
C 0
D 3.07
3 以下程序运行后的输出结果是__C_。
main()
{ double d; float f; long l; int i;
i=f=l=d=20/3;
printf("%d %ld %.1f %.1f\n",i,l,f,d);
}
A 6 6 6.0 6.0
B 6 6 6.7 6.7
C 6 6 6.0 6.7
D 6 6 6.7 6.0
4 以下程序运行后的输出结果是_D__。
main()
{ int a=1,b=2;
a=a+b; b=a-b; a=a-b;
printf("%d,%d\n",a,b);
}
A 1,2
B 1,1
C 2,2
D 2,1
5 以下程序运行后的输出结果是_A__。
main()
{ int x,y,z;
x=y=2; z=3;
y=x++-1; printf("%d %d ",x,y);
y=++x-1; printf("%d %d\n",x,y);
y=z---1; printf("%d %d ",z,x);
y=--z-1; printf("%d %d\n",z,x);
}
A 3 1 4 3
B 3 1 3 3
C 3 1 4 3
D 2 1 3 2
2 4 1 4 2 4 2 2 2 4 1 2 1
3 1 2
6 以下程序运行后的输出结果是_D__。
main()
{ int x,y,z;
x=y=1;
z=x++,y++,++y;
printf("%d,%d,%d\n",x,y,z);
}
A 2,3,3
B 2,3,2
C 2,3,1
D 2,2,1
7 以下程序运行后的输出结果是_D__。
main()
{ int x=4,y=7;
4
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论