3초기억력

제어문 문제)Scanner + if 본문

자바_기초

제어문 문제)Scanner + if

잠수콩 2019. 5. 14. 08:42
package ControlFlow;

import java.util.*;

//한명의 점수를 입력받아서 
//국어 수학 영어 총점 평균
//
//평균이  90이상일때
//	모든 과목이 90점 이상이면 "최우수상"
//	하나라도 과목이 90점 미만이면 "우수상"
//
//평균이 80~89이상일때 
//	모든과목이 90점 미만이면 "장려상"
//	하나라도 과목이 90점 이상이면 "입상"
	
public class exam_if1 {

	public static void main(String[] args) {

		System.out.print("국어 점수 : ");
		Scanner sc = new Scanner(System.in);
		int Kor = sc.nextInt();
	
		System.out.print("수학 점수 : ");		
		Scanner sc1 = new Scanner(System.in);
		int Math = sc1.nextInt();
		
		System.out.print("영어 점수 : ");		
		Scanner sc2 = new Scanner(System.in);
		int Eng = sc2.nextInt();
		
		int total = Kor + Math + Eng;
		double avg = total / 3.0;

		System.out.println("총점 : " + total);
		System.out.print("평균 : ");
		System.out.printf("%.2f", avg);
		System.out.println();
	
		String t1 = "";
		
		if (avg >= 90) {
//		평균이  90이상일때
//			모든 과목이 90점 이상이면 "최우수상"
//			하나라도 과목이 90점 미만이면 "우수상"
			if ( Kor >= 90 && Math >= 90 && Eng >= 90 ) {
				t1 = "최우수상";
			} else {
				t1 = "우수상";
			}
		} else if (avg >= 80 && avg < 90) {
//		평균이 80~89이상일때 
//			모든과목이 90점 미만이면 "장려상"
//			하나라도 과목이 90점 이상이면 "입상"
			if ( Kor < 90 && Math < 90 && Eng < 90 ) {
				t1 = "장려상";
			} else {
				t1 = "입상";
			}
		}

		if (t1 != "") {
			System.out.println("평가 : " + t1);
		}
		
	}

}

'자바_기초' 카테고리의 다른 글

제어문 + 반복문 문제) if + for + array  (0) 2019.05.14
제어문 문제) if + 논리연산자  (0) 2019.05.14
제어문 - 조건문 다중 if else  (0) 2019.05.14
제어문 - 조건문 if else  (0) 2019.05.14
제어문 - 조건문 if  (0) 2019.05.14
Comments