Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
7409 | 谢锦卓 | 09优惠活动 | C++ | Wrong Answer | 0 MS | 264 KB | 495 | 2025-04-22 20:09:42 |
#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 a,b; cin>>a>>b; switch(a){ case 'P':cout<<b*0.7<<" ";break; case 'G':cout<<b*0.8<<" ";break; case 'S':cout<<b*0.9<<" ";break; default:cout<<b*0.95<<" ";break; } return 0; }
------Input------
P 100
------Answer-----
70.00
------Your output-----
0