if 문 if(조건식){ 실행 구문.... } 조건식은 비교 연산이나 논리 연산의 혼합된 식, 실행구문이 한문장이면 {} 중괄호를 생략한다. if-else문 if(조건식){ 실행구문..... } else{ 실행구문.... } //////////////20대 판별 프로그램/////////////////////// import java.util.Scanner; public class Twenties{ public static void main(String[] args){ Scanner scanner = new Scanner(System.in); System.out.print("나이를 입력하시오:"); int age = scanner.nextInt(); if((age>=20) &&(age=90) grade =..