Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
100328 陈家渝 09优惠活动 C++ Accepted 1 MS 272 KB 533 2024-12-07 14:06:39

Tests(4/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(){ char a; double b; cin>>a>>b; if(a=='P') { b=b*0.7; } else if(a=='G') { b=b*0.8; } else if(a=='S') { b=b*0.9; } else { b=b*0.95; } printf("%.2lf",b); return 0; }