-->
当前位置:首页 > 题库

PROGRAMMING:Find the total score and average score of students' examination

Luz5年前 (2021-05-10)题库567
Given a student's test scores of three subjects (Chinese A, Mathematics B, English c), calculate the total score and average score of the student.
###Input format:
Enter students' test scores of three subjects (Chinese A, Mathematics B, English c) in one line, and separate them with spaces.
###Output format:
Output the total score and average score in one line. The total score and average score retain two decimal places.
###Input example:
```in
75.5 80 94
```
###Output example:
```out
sum = 249.50; average = 83.17
```







answer:If there is no answer, please comment