AC代码:
import java.util.Scanner; /** * @author CC11001100 */ public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); while (sc.hasNextLine()){ String[] ss = sc.nextLine().split("-"); int y = Integer.parseInt(ss[0]); int m = Integer.parseInt(ss[1]); int d = Integer.parseInt(ss[2]); System.out.println(dayCount(y, m, d)); } } private static int[] month = new int[]{ 31, // 1 -1, // 2 31, // 3 30, // 4 31, // 5 30, // 6 31, // 7 31, // 8 30, // 9 31, // 10 30, // 11 31, // 12 }; private static int dayCount(int y, int m, int d){ int res = d; for(int i=0; i<m-1; i++){ if(i==1) res += (y%4==0 && y%100!=0 || y%400==0) ? 29 : 28; else res += month[i]; } return res; } }
.