Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
101625 陈骏睿 09优惠活动 C++ Wrong Answer 1 MS 276 KB 605 2024-12-15 15:51:06

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(){ double a; char p; cin>>p>>a; switch(p) { case 'P': cout<<a*0.7<<endl; break; case 'G': cout<<a*0.8<<endl; break; case 'S': cout<<a*0.9<<endl; break; default: cout<<a*0.95; break; } return 0; }


Run Info:

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