以下代码输出的结果是________。int i=1;switch(i){case 0:System.out.print(0);break;case 1:System.out.print(1);case 2:System.out.print(2);default:System.out.print(3);}
查看答案
若a和 b均是整型变量并已正确赋值,则下列switch 语句中正确的是________。
A. switch(a+b); { ...... }
B. switch( a+b*3.0 ){ ...... }
C. switch a { ...... }
D. switch( a%b) { ...... }
下列语句序列执行后,k 的值是_________。int x = 6, y = 10, k = 5;switch (x % y) {case 0:k *= y;case 6:k = x / y;case 12:k = x - y;default:k *= y - x;}
A. 6
B. 0
C. -4
D. -16
以下程序通过Scanner 输入月份,然后使用switch 判断季节(春,夏,秋,冬)。请完善下划线处的程序代码,实现其功能。import java.util.Scanner;public class Test {public static void main(String[] args) {Scanner s = ____(1)______;System.out.println("请输入月份");int m = ____(2)____;switch (___(3)____) {case 1:__(4)__:__(5)__:System.out.println(m + "月是春季");____(6)_____;case 4:__(7)___:case 6:System.out.println(m + "月是夏季");break;___(8)___:case 8:case 9:System.out.println(m + "月是秋季");___(9)___;case 10:case 11:case 12:System.out.println(m + "月是冬季");break;_____(10)____:System.out.println("一共有十二个月哦~");}}}
全球金融体系的主要参与者包括()1、金融公司2、公共部门3、非金融公司 4、为住户服务的非营利性机构
A. 1、2、3、4
B. 1、2、3
C. 1、2、4
D. 1、3