Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
125348 12 三实数排序 C++ 编译错误 0 0 MS 0 KB 520 2024-01-23 16:47:42

Tests(0/0):


using namespace std; int main() { double w,s; cin>>w; if(w<=10){ s=0.2+w*0.8; cout<<fixed<<setprecision(2)<<s; } else if(w<=20){ s=0.2+10*0.8+(w-10)*0.75; cout<<fixed<<setprecision(2)<<s; } else if(w<=30){ s=0.2+10*0.75+10*0.8+(w-20)*0.7; cout<<fixed<<setprecision(2)<<s; } if(w>30){ cout<<"Fail"<<endl; cout<<fixed<<setprecision(2)<<s; } return 0; } © 编程魔法师 OJ 2024中文简体 | English


测评信息: