皮皮学,免费搜题
登录
搜题
【简答题】
the first argument of aquinas is argument from__. He argued the whatever is moved is moved by another and he traced back to the first static mover since __ is impossible
拍照语音搜题,微信中搜索"皮皮学"使用
参考答案:
参考解析:
知识点:
.
..
皮皮学刷刷变学霸
举一反三
【单选题】某零件用 40Cr 制造,在强度、淬透性方面还不能满足要求,改用 可能能满足要求。
A.
50
B.
45
C.
5CrMnMo
D.
42CrMo
【单选题】在C语言中,已知’a’字符的ASCII编码是97,那么大写C的编码应该是
A.
67
B.
68
C.
97
D.
99
【单选题】在C语言中,已知’A’字符的ASCII编码是65,那么c的编码应该是
A.
67
B.
68
C.
97
D.
99
【单选题】有以下定义语句: struct student {int num; charname[9];} 则不能正确定义结构体数组并赋初始值的是
A.
struct student stu[]={{1,"zhangsan"},{2,"li si"}};
B.
struct student stu[2]={1, "zhangsan",2,"li si"};
C.
struct student stu[2]={{1,"zhangsan"},{2,"li si"}};
D.
struct stu[]={{1,"zhangsan"},{2,"li si"}};
【单选题】设有如下说明 typedef struct {int n;char c;double x;}STD; 则以下选项中,能正确定义结构体数组并赋初值的语句是
A.
STD tt[2]={{l,'A',62},{2,'B',75}};
B.
STD tt[2]={1,'A',62,2,'B',75};
C.
streetn[2]={{1,'A'},{2,'B'}};
D.
struct tt[2]={{1,'A',62.5},{2,'B',75.0}};
【单选题】设有如下说明: typedef struct { int n; char c;double x;}STD; 则以下选项:能正确定义结构体数组并赋初值的语句是( )。
A.
STDtt[2]={{1,'A',62},{2,'B',75}};
B.
STDtt[2]={1,'A',62,2,'B',75};
C.
struet tt[2]={ {1,'A'},{2,'B'}};
D.
struct tt[2]={{1,'A',62.5},{2,'B',75.0}};
【单选题】下列描述中,正确的是______。
A.
a[2*3+5]可以是一个数组元素
B.
可以对结构体类型和结构类型变量赋值、存取或运算
C.
结构一经定义,系统就给它分配了所需的内存单元
D.
结构体变量和共用体变量所占的内存长度是各成员占的内存长度之和
【单选题】设有如下说明 typedef struct { int n; char c;double X;}STD; 则以下选项中,能正确定义结构体数组并赋初值的语句是
A.
STD tt[2]={{1,'A',62},{2,'B',75}};
B.
STD tt[2]={1,'A',62,2,'B',75};
C.
struct tt[2]={{1,'A'),{2,'B'}};
D.
struct tt[2]={{1,'A',62.5},{2,'B',75.0}};
【单选题】有以下定义语句:struct student {int num;charname[9];}则不能正确定义结构体数组并赋初始值的是( )。
A.
struct student stu[2]={1, "zhangsan",2,"li si"};
B.
struct student stu[2]={{1,"zhangsan"},{2,"li si"}};
C.
struct student stu[]={{1,"zhangsan"},{2,"li si"}};
D.
struct stu[]={{1,"zhangsan"},{2,"li si"}};
【简答题】以下结构体数组定义,正确的是() (2.0分)A. struct date { int year; int month; int day; }date1[10],date2[10]; B. struct { int year; int month; int day; }date1[10],date2[10]; C. struct date { int year; int month; int da...
相关题目: