public class Homework01 {
public static void main(String[] args) {
int score =93;
if(score>=90) {
System.out.println("점수가 90보다 큽니다");
System.out.println("등급은 A입니다");
}
if(score<90) {
System.out.println("점수가 90보다 작습니다");
System.out.println("등급은 B입니다");
}
}
}
'내 첫사랑! 컴퓨터 프로그래밍 > 자바는 나의 친구' 카테고리의 다른 글
Java의 switch문의 중요한 특징 (0) | 2022.10.18 |
---|---|
[Eclipse 에러] Code Recommenders cannot download its model repository index (0) | 2022.10.15 |
이클립스에서 소스파일 생성할때... (0) | 2022.10.13 |
처음 짜본 자바 프로그램!!! (3) | 2022.10.13 |
System.out과 System.err의 차이 (4) | 2022.10.13 |