Problem psle
User Jessyn
Submission Time 2024-11-16 11:52:19
Score 0
Max Time N/A
Max Memory N/A

Compile Error

psle.cpp: In function ‘int main()’:
psle.cpp:4:9: error: ‘cin’ was not declared in this scope
4 | int s; cin >> s;
| ^~~
psle.cpp:5:13: error: ‘cout’ was not declared in this scope
5 | if (s>=91) cout <<"A*";
| ^~~~
psle.cpp:6:18: error: ‘cout’ was not declared in this scope
6 | else if (s>=75) cout <<"A";
| ^~~~
psle.cpp:7:18: error: ‘cout’ was not declared in this scope
7 | else if (s>=60) cout <<"B";
| ^~~~
psle.cpp:8:18: error: ‘cout’ was not declared in this scope
8 | else if (s>=50) cout <<"C";
| ^~~~
psle.cpp:9:18: error: ‘cout’ was not declared in this scope
9 | else if (s>=35) cout <<"D";
| ^~~~
psle.cpp:10:18: error: ‘cout’ was not declared in this scope
10 | else if (s>=20) cout <<"E";
|