单项选择题
以下程序的输出结果是( )。
#include <stdio.h>
main()
int i;
for(i=1;i<5;i++)
if(i%2) printf("*");
else continue;
printf("#");
printf("$\n");
A.*#*#*#$
B.#*#*#*$
C.*#*#$
D.#*#*$
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
单项选择题
以下不属于面向对象的基本特点的是( )。
A.分类性
B.多态性
C.继承性
D.封装性
点击查看答案&解析
单项选择题
在C语言中,下列各选项为不正确的int类型的常数足( )。
A.32768
B.0
C.037
D.0xAF
点击查看答案&解析
相关试题
请选出以下程序的输出结果( )。 #incl...
已知字符0的ASCII码为十六进制的30,现...
有以下程序: #include <stdio.h> m...
请读程序: #include <stdio.h> fun...
读程序: #include <stdio.h> f(in...