#S0002. 考试成绩分析

考试成绩分析

1. Description

Create a student score analyzer. Input multiple scores (integers 0-100), output the average score, highest score and lowest score.

2. Input & Output

Input:

  • Multiple scores separated by spaces

Output:

  • First line: average score (1 decimal)
  • Second line: highest score
  • Third line: lowest score

Example

# Input: 
85 90 78 92
# Output: 
86.2
92
78
# Input: 
60 75 80
# Output: 
71.7
80
60