赞
踩
C语言程序设计 样题
单选题
1:下面程序的输出是 ( )。
main()
{ int y = 9;
for( ;y 〉0;y - -)
{if(y%3 = =0) printf(“%d”,- - y);}
}( 2 分)
A:741
B:852
C:963
D:87654321
答案:B
2:已知学生记录描述为
struct student
{int no;
char name[20];
char sex;
struct
{int year;
int month;
int day;
} birth;
};
struct student s;
设变量s 中的“生日”应是“1984年11月11日”,下列对“生日”的正确赋值方式是( ) 。( 2 分)
A:year = 1984;
month = 11;
day = 11;
B:birth.year = 1984;
birth.month = 11;
birth.day = 11;
C:s.year =1984;
s.month = 11;
s.day = 11;
D:s.birth.year = 1984;
s.birth.month &#
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。