单项选择题
结构化程序由3种基本结构组成,3种基本结构组成的算法( )。
A.可以完成任何复杂的任务
B.只能完成部分复杂的任务
C.只能完成符合结构化的任务
D.只能完成一些简单的任务
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
单项选择题
设有以下定义和语句: int a[3][2]={1,2,3,4,5,6,), *p[3]; p[0]=a[1]; 则*(p[0]+1)所代表的数组元素是( )。
A.a[0][1]
B.a[1][0]
C.a[1][1]
D.a[1][2]
点击查看答案&解析
单项选择题
以下选项中能正确把c1定义成结构体变量的是( )。
A.typedef struct { int red; int red; int green; int blue; }COLOR; COLOR c1;
B.struct color c1 { int red int red; int green int blue; };
C.stmctcolor { int red, int green; int blue; }c1;
D.struct { int red; int green; int blue; }c1;
点击查看答案&解析
相关试题
(48)~(50)以下程序的功能是:建立...
有以下程序: struct STU{ char name...
D
A.p->nextB.pC.sD.s->next
A.*sB.SC.*s++D.(*++