当前位置:   article > 正文

c语言经典试题(五)_如果结构变量s中的生日是“1984年11月11日”,下列对其生日的正确赋值是()。 struc

如果结构变量s中的生日是“1984年11月11日”,下列对其生日的正确赋值是()。 struc

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 &#

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/寸_铁/article/detail/1000937
推荐阅读
相关标签
  

闽ICP备14008679号