Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
99768 李昊宇 09优惠活动 C++ Compile Error 0 MS 0 KB 306 2024-11-30 15:16:56

Tests(0/0):


Code:

#include<iostream> using namespace std; int main(){ int a; char b; cin>>b>>a; if(b=='P'){ printf("%.2lf",a*0.7); } else if(b=='G'){ printf("%.2lf",a*0.8); } else if(b=='S'){ printf("%.2lf",a*0.9); } else if(b=='C'){ printf("%.2lf",a*0.95); }


Run Info:

Main.cc: In function 'int main()':
Main.cc:18:1: error: expected '}' at end of input
 }
 ^