Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
106637 | 李朋秦 | 09优惠活动 | C++ | Wrong Answer | 1 MS | 268 KB | 528 | 2025-01-16 14:30:35 |
#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 b; char a; cin>>a>>b; switch(a){ case 'P': printf("%.2lf",b*0.7);break; case 'G': printf("%.2lf",b*0.8);break; case 'S': printf("%.2lf",b*0.9);break; default:printf("%.2lf",b);break; } return 0; }
------Input------
C 100
------Answer-----
95.00
------Your output-----
0.00