Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
106628 陈奕涵 09优惠活动 C++ Wrong Answer 0 MS 264 KB 713 2025-01-16 14:26:13

Tests(0/4):


Code:

#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; char d; cin>>a>>d; switch(d) { case 'P': d=d*0.7; printf("%.2lf",d); break; case 'G': d=d*0.8; printf("%.2lf",d); break; case 'S': d=d*0.9; printf("%.2lf",d); break; case 'C': d=d*0.95; printf("%.2lf",d); break; } return 0; }


Run Info:

------Input------
C 100
------Answer-----
95.00
------Your output-----