package test;//包
import java.util.Scanner;//导包
//类
public class Wang {
//主函数
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();//接收输入的内容
System.out.println("请输入日:");//提示语句
int bg = sc.nextInt();//接收输入的内容
int sumDay =0;//统计天数
// 判断月份
for(int i=1;i<month;i++) {
//一系列操作都是判断月份天数
//1,3,5,7,8,10,12 31天
//4,6,9,11 30天
//闰年2月29天,平年 28天
if(i==1||i==3||i==5||i==7||i==8||i==10||i==12) {
sumDay+=31;
}else if(i==4||i==6||i==9||i==11) {
sumDay+=30;
}else if(i==2) {
sumDay+=28;
//如果是闰年 二月就是29天
if(year%4==0&&year%100!=0 || year%400==0) {
sumDay+=1;
}
}
}
sumDay+=bg;
System.out.println("本年中第:"+sumDay+"天");
}
}