题目描述
花栗鼠科技大学(Hualishu University of Science and Technology, HUST)的计算机组成原理快要出分了。你现在需要计算你的组原成绩如何构成。
具体来说,组原成绩分为三部分,分别是平时出勤 tt ,作业 hh 和考试 ee 。总成绩 ww 由如下公式计算:
w=t \times 20\% +h \times 30\%+e \times 50\%w=t×20%+h×30%+e×50%
其中我们保证 0 \leq h,e,t \leq 1000≤h,e,t≤100
现在你知道了你的组原考试的 t,h,et,h,e ,你希望计算你的总成绩。
由于教务系统的特殊性,最终成绩只能是整数,采取 直接去掉小数部分 的办法。
输入格式
一行三个整数,表示 t,h,et,h,e
输出格式
一行一个整数,为 ww
输入输出样例
输入 #150 100 100输出 #1
90
#include <iostream> using namespace std; int main() { int w, t, h, e; cin >> t >> h >> e; cout << int(t*0.2 + h*0.3 + e*0.5); return 0; }
标签:传智杯,P8839,50,初赛,times,组原,100,成绩 From: https://www.cnblogs.com/slowlydance2me/p/16908449.html