Menu



Manage

Cord > Study_JAVA 전체 다운로드
파일 목록
Study_JAVA > 4/ifelseex.java Lines 16 | 353 바이트
다운로드

                        package week4;

public class ifelseex {
	public static void main(String[] args) {
		int score = 85;
		
		if (score >= 90) {
			//true일때
			System.out.println("점수가 90점 이상입니다.");
			System.out.println("Your grade is A");
		} else {	//false인 경우
			System.out.println("점수가 90점 미만입니다.");
		}
	}
}