| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 147507 | 邓凯方 | 09优惠活动 | C++ | Accepted | 0 MS | 280 KB | 541 | 2026-02-05 19:27:32 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int P,G,S,a; char B; cin>>B>>a; if(B=='P'){ printf("%.2lf",a*0.7); } else if(B=='G'){ printf("%.2lf",a*0.8); } else if(B=='S'){ printf("%.2lf",a*0.9); } else{ printf("%.2lf",a*0.95); } return 0; }