Problem ippt
User BeOH
Submission Time 2026-02-03 12:51:18
Score 0
Max Time N/A
Max Memory N/A

Compile Error

ippt.cpp: In function ‘int main()’:
ippt.cpp:5:43: error: expected ‘;’ before ‘else’
5 | if ((a==0||b==0)||c==0) cout << "FAIL"
| ^
| ;
6 | else if (a+b+c>=85) cout << "GOLD"; else if ((a+b+c)>=75) cout << "SILVER"; else if ((a+b+c)>60) cout << "BRONZE"; else cout << "FAIL";
| ~~~~