Time Limit: 1s
Memory Limit: 128MB
학생들의 점수를 입력받아서 최고점을 찾아내고, 이를 토대로 학생들의 성적을 결정해주는 프로그램을 작성하세요. 규칙은 다음과 같습니다.
Write a program that reads student scores, gets the best score, and then assigns grades based on the following scheme:
The program prompts the user to enter the total number of students, then prompts the user to enter all of the scores, and concludes by displaying the grades.
* Line 1 : 학생의 수 N (1~100)
* Line 2 ~ N+1 : 실수형태의 학생의 성적 (0~100)
* Line 1 ~ T : 학생의 성적
4 40 55 70 58
C B A B
JAVA2015 PE7.1