本帖最后由 睡中忘了的睡 于 2012-12-5 10:26 编辑
/*
题目:输入某年某月某日,判断这一天是这一年的第几天?
程序分析:以3月5日为例,应该先把前两个月的加起来,然后再加上5天即本年的第几天,
特殊情况,闰年且输入月份大于3时需考虑多加一天。
*/
import java.util.*;
class DateDemo
{
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 day = sc.nextInt();
int[] a={31,28,31,30,31,30,31,31,30,31,30,31};
int sum=0,i;
if((year%100!=0 && year%4==0) || year%400==0)
{
a[1]=29;
}
for(i=0;i<month-1;i++)
{
sum = sum+a;
}
sum=sum+day;
System.out.println(month+"月"+day+"日是"+year+"年的"+"第"+sum+"天");
}
} |