面试题一
1、if和switch的区别,什么时候用if,什么时候用switch?
格式一:if(num==1){
//代码块一
}
格式二:if (num==1){
//代码块一
}else{
//代码块二
}
格式三:if(num==1){
//代码块一
}else if{
//代码块二
} else if{
//代码块三
}
int num = 1;
switch (num){
case 1:
System.out.println(1);
case 2:
System.out.println(2);
break//结束语句
case 3:
System.out.println(3);
default 4:
System.out.println(4);
}
知道答案的评论里走一波
下次将为大家解答