Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
126759 | 唐洪盛 | 09优惠活动 | C++ | Accepted | 1 MS | 272 KB | 319 | 2025-07-21 16:28:04 |
#include<bits/stdc++.h> using namespace std; int main() { char a; double 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; }