Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
126758 | 唐洪盛 | 09优惠活动 | C++ | Wrong Answer | 1 MS | 268 KB | 309 | 2025-07-21 16:25:48 |
#include<bits/stdc++.h> using namespace std; int main() { int a, b; cin >> a >> b; if (a == 'P') { printf("%.2f", b * 0.7); }else if (a == 'G') { printf("%.2f", b * 0.8); }else if (a == 'S') { printf("%.2f", b * 0.9); } else { printf("%.2f", b * 0.95); } return 0; }
------Input------
C 100
------Answer-----
95.00
------Your output-----
0.00