单项选择题

结构化程序设计方法的3种基本控制结构中不包括( )。

A.循环结构
B.递归结构
C.顺序结构
D.选择结构
<上一题 目录 下一题>
热门 试题

单项选择题
若有定义float x=15;int a=1,b=3,c=2;,则正确的switch语句是( )。
A.switch(x)
case 1.0:printf("*\n");
case 2.0:printf("**\n");
B.switch((int)x);
case 1:printf("*\n");
case 2:printf("**\n");
C.switch(a+b)
case 1:printf("*\n");
case 2+1:printf("**\n");
D.switch(a+b)
case 1:printf("*\n");
case c:printf("**\n");
单项选择题
已知字符'A'的ASCⅡ码值是65,字符变量c1的值是'A',c2的值是'D'。执行语句printf( %d,%d ,c1,c2-2);后,输出结果是( )。
A.A,B
B.A 68
C.65,66
D.65,68
相关试题
  • 有以下程序: #include<stdio.h> mai...
  • 下列程序的运行结果为( )。 #include...
  • 有以下程序: #include<stdio.h> mai...
  • 有以下程序: #include<stdio.h> mai...
  • 有以下程序: #include<stdio.h> mai...