题目 / 答案提交正确答案
下面程序的运行结果是()。 #include <stdio.h> int main() { int i; for(i=1;i<=5;i++) { if(i%2) printf(“*”); else continue; printf(“#”); } printf(“$
”); }
A.*#*#*$
B.***$
C.*#*#*#$
D.*#*#$
正确答案:C
关键字 浏览量:次
上一篇:下面程序段的运行结果是()。 x=y=0; while(x<15) y++,x+=++y; printf(&quo
下一篇:下面程序的输出结果是()。 #include <stdio.h> int main() { char c=&
相关问题
【智慧树】下面程序的运行结果是()。 struct st { int n; int a[20]; }; void f(int *a
【智慧树】下面程序的运行结果是()。 #include <stdio.h> #include <string.h
【智慧树】下面程序的运行结果是()。 #include <stdio.h> union data { int i; c
【智慧树】以下下面程序的运行结果是()。 #include <stdio.h> int main() { int a=
【智慧树】下面程序的运行结果是()。#include<stdio.h>intmain(){staticchara[]=
【智慧树】下面程序的运行结果是()。#include<stdio.h>#include<string.h>