如何跳出嵌套语句之return
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何跳出嵌套语句之return相关的知识,希望对你有一定的参考价值。
/*
* 键盘输入年份和月份,然后控制台返回该月份的天数(闰年2月29天).
* */
public class Demo01 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("请输入年份:");
int year = sc.nextInt();
System.out.println("请输入月份:");
int month = sc.nextInt();
if(month<=0 || month>12){
System.out.println("请输入正确的月份!");
}else if(month==4 || month==6 || month==9 || month==11){
System.out.println(year+"年"+month+"月有:30天");
}else if(month==2){
if(month%4==0 && month%100!=0 || month%400==0){
System.out.println(year+"年"+month+"月有:29天");
}else{
System.out.println(year+"年"+month+"月有:28天");
}
}else{
System.out.println(year+"年"+month+"月有:30天");
}
}
}
以上是关于如何跳出嵌套语句之return的主要内容,如果未能解决你的问题,请参考以下文章