竞赛
考级
一道相当水的题
匿名
#include <bits/stdc++.h> using namespace std; int main(){ int A,B,C,d; cin>>A>>B>>C; d=0.2A+0.3B+0.5*C; cout<<d; return 0; }
黑白世界
正在减肥的吃货
不会的直接抄
186****4640
#include<iostream> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; cout<<a0.2+b0.3+c*0.5; return 0; }
一念成魔
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; cout<<a0.2+b0.3+c*0.5; return 0; }
智慧达达(1)
#include<bits/stdc++.h> using namespace std; int a,b,c,d; int main(){ cin>>a>>b>>c; d=(a0.2)+(0.3b)+(0.5*c); cout<<d; return 0; }
13000002310
#include <iostream> using namespace std; int main(){ int A,B,C; cin>>A>>B>>C; cout<<A0.2+B0.3+C*0.5; return 0; }
150****9508
共28条
提交答案之后,这里将显示提交结果~