# Find the highest score (M) among all the subjects.

# Change every score using the formula: (Score / M) × 100.

# Calculate the new average of these transformed scores.

# Problem 1 (문제 1)
# Read an integer N.
# (정수 N을 입력받으세요.)
#
# Read N scores.
# (점수 N개를 입력받으세요.)
#
# Find the maximum score.
# (최댓값을 구하세요.)
#
# Divide each score by the maximum score.
# (각 점수를 최댓값으로 나누세요.)
#
# Print the new scores separated by space.
# (새로운 점수들을 공백으로 출력하세요.)
#
# Input Example (입력 예시):
# 3
# 40 80 60
#
# Output Example (출력 예시):
# 0.5 1.0 0.75
#
# Hint (힌트):
# Use max()
# Use for loop

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: