4

xxx 2021-11-28 15:40:24 0

#include

using namespace std;

int main() { int id; float p; scanf("%d %f", &id, &p); switch (id) { case 1: printf("%f", p * 0.7); break; case 2: printf("%f", p * 0.8); break; case 3: printf("%f", p * 0.9); break; case 4: printf("%f", p * 0.95); break; default: printf("ID:%d不存在", id); } }

{{ vote && vote.total.up }}