什么是直落式switch语句?实现一个方法:输入一个日期,返回这个月有多少天。(代码不超过20句)
什么是直落式switch语句?实现一个方法:输入一个日期,返回这个月有多少天。(代码不超过20句)
import java.util.Scanner;
public class example { public static void main(String[] args) { int y, m, d; Scanner input = new Scanner(System.in); System.out.print("请输入年份:(yyyy)"); y = input.nextInt(); System.out.println("请输入月份:"); m = input.nextInt(); switch (m) { case 2: if (y % 400 == 0 || y % 4 == 0 && y % 100 != 0) d = 29; else d = 28; break; case 4:case 6:case 9:case 11: d = 30; break; default: d = 31; } System.out.print(d); }
} 这个是java的