1972: The Total Score
内存限制:128 MB
时间限制:1.000 S
评测方式:文本比较
命题人:
提交:26
解决:17
题目描述
The calculation method for the total score of this course is:
the total score =A*0.25 + B *0.3 + C*0.45
A is class performance score
B is mid-term exam score
C is final exam score
输入
input three integers to denote the scores of three parts
the three scores are all 100 points(if the score exceeds 100 points, it will be calculated as 100 points)
输出
output the total score,the result is rounded to the nearest whole number
样例输入 复制
90 120 81
60 90 82
样例输出 复制
89
79