Problem exam
User PrunJuice
Submission Time 2023-10-22 15:16:22
Score 0
Max Time N/A
Max Memory N/A

Compile Error

exam.cpp: In function ‘int main()’:
exam.cpp:4:8: error: ‘x’ was not declared in this scope
4 | cin >> x;
| ^
exam.cpp:8:5: error: expected unqualified-id before numeric constant
8 | int 3, 5;
| ^
exam.cpp:9:5: error: no match for ‘operator>>’ (operand types are ‘std::istream’ {aka ‘std::basic_istream<char>’} and ‘int’)
9 | cin >> 3*5;
| ~~~ ^~ ~~~
| | |
| | int
| std::istream {aka std::basic_istream<char>}
In file included from /usr/include/c++/9/iostream:40,
from exam.cpp:1:
/usr/include/c++/9/istream:120:7: note: candidate: ‘std::basic_istream<_CharT, _Traits>::__istream_type& std::basic_istream<_CharT, _Traits>::operator>>(std::basic_istream<_CharT, _Traits>::__istream_type& (*)(std::basic_istream<_CharT, _Traits>::__istream_type&)) [with _CharT = char; _Traits = std::char_traits<char>;