Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
97223 Kevin 09优惠活动 C++ Accepted 1 MS 272 KB 223 2024-11-11 18:15:28

Tests(4/4):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ char a; double b; cin>>a>>b; if(a=='P') b=b*0.7; else if(a=='G') b=b*0.8; else if(a=='S') b=b*0.9; else b=b*0.95; printf("%.2lf",b); return 0; }