皮皮学,免费搜题
登录
logo - 刷刷题
搜题
【单选题】
已知学生记录描述为 struct student { int no ; char name[20]; char sex; struct { int year ; int month; int day ; }birth; }; struct student s; 设变量 s 中 “ 生日 ” “2016 年 1 月 10 日 ” ,下列对 “ 生日 ” 的正确赋值方式是
A.
year=2016 ; month=1 ; day=10 ;
B.
birth. year=2016; birth. month=1 ; birth. day=10;
C.
s. year=2016; s.month=1 ; s.day=10;
D.
s. birth. year=2016; s. birth.month=1 ; s. birth.day=10;
手机使用
分享
复制链接
新浪微博
分享QQ
微信扫一扫
微信内点击右上角“…”即可分享
反馈
参考答案:
举一反三
【判断题】五德学说产生于秦时期。
A.
正确
B.
错误
【单选题】#include void fun ( int k ) ; void main ( ) { int w = 5 ; fun ( w ) ; printf ( "\n" ) ; } void fun ( int k ) { if ( k>0 ) fun ( k-1 ) ; printf ( "%d" , k ) ; }
A.
012345
B.
123456
C.
012356
D.
123547
【简答题】Rewrite the following by putting the short sentences into compound or complex sentences, or sentences with participial, prepositional, or other phrases.you are required to write at least 3 different s...
【单选题】#include void fun(int m); void main( ) { int w=5; fun(w); } void fun(int m) { if(m>0) fun(m-1); printf("%d ",m); }
A.
5 4 3 2 1
B.
0 1 2 3 4 5
C.
0
D.
5 4 3 2 1 0
【单选题】frame对象可以用哪个标记代替
A.
frameset
B.
div
C.
table
D.
iframe
【单选题】#include void fun ( int k ) ; void main ( ) { int w = 5 ; fun ( w ) ; printf ( "" ) ; } void fun ( int k ) { printf ( "%d" , k ) ; if ( k>0 ) fun ( k-1 ) ; }
A.
5
B.
54321
C.
12345
D.
543210
【简答题】花样年华展示了多少套旗袍?有什么样的作用?
【单选题】The pianist was a(n) ___________talent that had performed around the world.
A.
ambitious
B.
extrordinary
【单选题】#include "stdio.h" void fun(int m); main() { int w=5; fun(w);} void fun(int m) { if(m>0)fun(m-1); printf("%d ",m); }
A.
5 4 3 2 1
B.
0 1 2 3 4 5
C.
0
D.
5 4 3 2 1 0
【单选题】下列程序的运行结果是( ) #include void fun ( int k ) ; void main ( ) { int w = 5 ; fun ( w ) ; } void fun ( int k ) { printf ( "%d" , k ) ; if ( k>0 ) fun ( k-1 ) ; }
A.
5
B.
54321
C.
12345
D.
543210
相关题目:
参考解析:
知识点:
题目纠错 0
发布
创建自己的小题库 - 刷刷题