提交时间:2020-08-15 08:44:20
运行 ID: 5800
#include<bits/stdc++.h> using namespace std; int main(){ float a,b,c,d,e,f,g; cin>>a>>b>>c; d=a*10.4; e=b*15.6; f=c*25.2; g=d+e+f; printf("%.1f",g); return 0; }