2009年5月軟件水平考試程序員筆試考前精選試題(二)
1.以下不是c語言規(guī)定保留字的是( )。
(1)float
(2)integer
(3)signed
(4) unsigned
2.設(shè)int型變量x有初始值3,則表達(dá)式x++*5/10的值是( )
(1)0
(2)1
(3)2
(4)3
3.下述程序執(zhí)行后的輸出結(jié)果是( )
#include
main()
{
int x=’f’;
printf("%c\n",’a’+(x-’a’+1));
}
(1)G
(2)H
(3)I
(4)J
4.設(shè)有程序,整理!
#include
main()
{
int i,j;
for (i=0,j=1;i<=j+1;i+=2,j--)
printf("%d\n",i);
}
在運(yùn)行上述程序時(shí),for語句中循環(huán)體的執(zhí)行次數(shù)是( )
(1)3
(2)2
(3)1
(4)0
5.在下述選項(xiàng)時(shí),沒有構(gòu)成死循環(huán)的程序是( )
(1)int i=100
while (1)
{
i=i0+1;
if (i>100)
break;
}
(2)for (;;);
(3)int k=1000;
do
{
++k;
}while (k>=10000);
(4) int s=36;
while (s);--s;
答案:
1.(2) 2.(2) 3.(1) 4.(3) 5.(3)
相關(guān)推薦:
2009年5月程序員筆試考前沖刺練習(xí)系列匯總 2009年5月軟考程序員考前沖刺復(fù)習(xí)資料