Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
144991 c13 09优惠活动 C++ Compile Error 0 MS 0 KB 250 2026-01-24 19:59:46

Tests(0/0):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int a; char b; cin>>b>>a if(b=='P')cout<<a*0.7<<endl; else if(b=='G')cout<<a*0.8<<endl; else if(b=='S')cout<<a*0.9<<endl; else cout<<a*0.95<<endl; return 0; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:7:5: error: expected ';' before 'if'
     if(b=='P')cout<