0

所以我一直在研究这个程序,我已经得到了一些可以很好地解决的日期,但是当我输入未来年份的二月份时,它显示它不应该是无效的。为了这个计划,2 月份的天数只有 1-28 天。谁能帮我抓住我的错误?

  import java.util.Scanner;
    public class FutureDate {
     public static void main (String args[]){

  int inputMonth;
  int inputDate;
  int inputYear;
  final int currentMonth = 10;
  final int currentDate = 24;
  final int currentYear = 2013;
  final int numberOfDays = 31; 

  Scanner keyboard = new Scanner(System.in);

  System.out.println("Enter a month in format - mm: ");
  inputMonth = keyboard.nextInt();

  System.out.println("Enter a day in format - dd: ");
  inputDate= keyboard.nextInt();

  System.out.println("Enter a year in format - yyyy: ");
  inputYear = keyboard.nextInt();


  if (inputYear < currentYear)
  System.out.println("Invalid Date");

  else if (inputYear >= currentYear)


  {

     if (inputMonth >= 1 && inputMonth <=12){        

        if ((inputMonth == 4 || inputMonth == 6 || inputMonth == 9 || inputMonth == 11) && (inputDate >= 1 && inputDate <= 30))
        System.out.println("Valid Date");

        else if (inputMonth > currentMonth && inputDate >= 1 && inputDate <=30)
        System.out.println("Valid Date");

        else if (inputMonth == currentMonth && inputDate > currentDate && inputDate <=30)
        System.out.println("Valid Date");

        else

        System.out.println("Invalid Date");
        }

     else if (inputMonth == 2 && inputDate >= 1 && inputDate <= 28){
        System.out.println("Valid Date");

        if (inputMonth > currentMonth && inputDate >= 1 && inputDate <=28)
        System.out.println("Valid Date");

        else if (inputMonth == currentMonth && inputDate > currentDate && inputDate<=28)
        System.out.println("Valid Date");

        else
        System.out.println("Invalid Date");
        } 

      else if (inputMonth == 1 || inputMonth == 3 || inputMonth == 5 || inputMonth == 7 || inputMonth ==10 || inputMonth == 12 && inputDate >= 1 && inputDate <= 31){

        if (inputMonth > currentMonth && inputDate >= 1 && inputDate <=31)
        System.out.println("Valid Date");

        else if (inputMonth == currentMonth && inputDate > currentDate && inputDate <=31)
        System.out.println("Valid Date");

        else
        System.out.println("Invalid Date");

     }

      else           
      System.out.println ("Invalid Date");

        }

  }

  }
4

2 回答 2

1

您的第一个 if 子句检查它是否在 1 月和 12 月之间(哪个 2 月是),所以它进入那个 if 子句而不是第二个。

如果在第一个之前移动你的第二个

于 2013-10-22T00:28:24.503 回答
1
  1. 总是对单行if -s 和else -s 使用花括号。

  2. 让我们看看你的第一个if

    // 1.
    if (inputMonth >= 1 && inputMonth <=12){        
    // 2.
    if ((inputMonth == 4 || inputMonth == 6 || inputMonth == 9 || inputMonth == 11) && (inputDate >= 1 && inputDate <= 30))
    System.out.println("Valid Date");
    // 3.
    else if (inputMonth > currentMonth && inputDate >= 1 && inputDate <=30)
    System.out.println("Valid Date");
    // 4.
    else if (inputMonth == currentMonth && inputDate > currentDate && inputDate <=30)
    System.out.println("Valid Date");
    // 5.
    else
    
    System.out.println("Invalid Date");
    }
    
    • // 1 为真,所以我们输入。
    • // 2 为假;继续
    • // 3 为假;继续
    • // 4 为假;继续

现在我们在 // 5,打印出“无效日期”。

必须纠正你的逻辑。

于 2013-10-22T00:28:33.997 回答