0

ユーザーにYR MON DAYを入力させ、提供された入力に基づいて現在の年齢を計算し、画面に年齢を表示しようとしています。

これが私のコードの始まりです:

static void checkAgeFormat(int current_date, int current_month,
                            int current_year, int birth_date,
                            int birth_month, int birth_year) {
    int f = 0;
    if(current_date <= 01 && current_date => 31) {
        System.out.println("Invalid current_date");
        f = 1;
    }

「2 項演算子 && のオペランド型が正しくありません」というメッセージが表示されますが、その理由がわかりません。また、コーディングに関してかなりの初心者です。助けてくれてありがとう

4

5 に答える 5