对于家庭作业,我想在 Jave 程序中计算日期在一年中的第 n 天。
因此,用户给出一个日期,然后它会告诉你这是一年中的第几天。所以 2019 年 1 月 1 日是第一天。我已经有一个函数可以给出一个月的天数。此函数还考虑闰年。所以我只需要一个返回一年中的第几天的函数。我想,我必须做,但它不起作用,因为我不能减少一个月:
static int dayNumberInYear(int day, Month month, int year)
{
while(month!=Month.JANUARY)
{
int dayNumberInYear=dayNumberInYear+numberOfDaysInMonth(year,month);
Month month = month(-1);
}
return dayNumberInYear(day,month,year)+day;
}
我知道这是不对的,所以我希望有人能帮助我。我认为 for 循环更好,但我不知道如何。第一行,static int dayNumberInYear(int day, Month month, int year)我不允许更改它,所以它需要是第一行。 我不允许使用 java JRE 日期操作类,如日历、日期等!
我是初学者,所以希望有人能帮助我。这是我到目前为止的代码:
package ;
import java.util.Scanner;
public class Easter
{
public static void main(String[] arguments)
{
Scanner scanner=new Scanner(System.in);
System.out.println("Enter the day month and year with spaces in between:");
int day=scanner.nextInt();
int monthNumber=scanner.nextInt();
Month month=Month.month(monthNumber);
int year=scanner.nextInt();
System.out.println("The month "+month+" has "+numberOfDaysInMonth(year,month)+" days in year "+year);
System.out.println("The number of this date in a year:"+dayNumberInYear(day,month,year));
scanner.close();
}
static boolean isLeapYear(int year)
{
if(year%100==0)
year=year/100;
if(year%4==0)
return true;
return false;
}
static int numberOfDaysInMonth(int year, Month month)
{
switch(month)
{
case APRIL:
case JUNE:
case SEPTEMBER:
case NOVEMBER:
return 30;
case FEBRUARY:
if(isLeapYear(year))
return 29;
return 28;
default:
return 31;
}
}
一只斗牛犬
Smart猫小萌
侃侃无极
相关分类