以下程序的输出结果是( )。void main(){int a=2;switch(a){case 1: printf("1"); break;case 2: printf("2"); break;default: printf("3"); break;}}
查看答案
有以下程序void main(){int a=15,b=21,m=0;switch(a%3) {case 0: m++;break; case 1: m++;switch(b%2){default: m++;case 0: m++;break;}}printf("%d\n",m);}程序运行后的输出结果是()。
A. 1
B. 2
C. 3
D. 4
以下程序输出结果( )。#include void main(){int a=2,b=7,c=5;switch(a>0){case 1: switch(b<0){case 1: printf("@");break;case 2: printf("!"); break;}case 0: switch(c==5){ case 0: printf("*");break;case 1: printf("#");break;case 2: printf("$");break;}default:printf("&");}printf("\n");}
A.
B. &
C. *
D. $
E. @$
F. @
G. $
编写程序输出某年某月有多少天,2月需要判断是否闰年。
用switch语句编写程序,判断输入月份为哪个季节,已知3、4、5为春季,6、7、8为夏季,9、10、11为秋季,12、1、2为冬季。