public class LogicalOperatorExam{
    public boolean isAgeTwenties(int age){
        boolean isTwenties = false;
        //이 아래 줄을 수정하세요.
        if( ________ ) {
            isTwenties = true;
        }
        else{
            isTwenties = false;
        }
   
    return isTwenties;
    }


    public static void main(String[] args){
        LogicalOperatorExam exam = new LogicalOperatorExam();
        exam.isAgeTwenties(19);
        exam.isAgeTwenties(25);
    }
}


int형 변수 age의 값을 검사해서 age가 20대인지를 검사하려고 합니다.
5번째 줄의 ________를 수정해서, 20대라면 isTwenties에 true를 그렇지 않으면 false를 저장하도록 만들어 보세요.


논리 연산자 문제인데

답하고 풀이좀 알려주세여