국어, 영어, 수학 점수 입력 후 총점, 평균, 최고점수 과목, 최저점수 과목 그리고 최고 점수와 최저 점수의 차이를 각각 출력 kor = int(input('국어 점수: '))maxScore, minScore = kor, kormaxObject, minObject = '국어', '국어'eng = int(input('영어 점수: '))if(eng > maxScore): maxScore = eng maxObject = '영어'else: minScore = eng minObject = '영어'math = int(input('수학 점수: '))if(math > maxScore): maxScore = math maxObject = '수학'else: minScore = ma..
Map을 이용하여 과목과 점수를 입력받아서 과목: 점수, 합계, 평균 출력 종료 키워드가 나올 때까지 반복 (종료키워드 = 0) 과목 > 국어 점수 > 90 다시 입력? 종료(0) > 종료 후 과목 : 점수, 합계, 평균 출력 import java.util.HashMap; import java.util.Scanner; public class Map03 { public static void main(String[] args) { HashMap map = new HashMap(); Scanner sc = new Scanner(System.in); int num = 0; int sum = 0; do { System.out.print("과목> "); String obj = sc.next(); System.out..