0
I cant understand the error of my video plzz help
/usercode/file0.cpp: In function 'int main()': /usercode/file0.cpp:9:35: error: expected ';' before 'cin' 9 | cout<<" Enter the two numbers" | ^ | ; 10 | cin>>a>>b ; | ~~~ What it means?
4 ответов
+ 4
You forgot ';' at the 9th line.
+ 3
';' semi-colon is required at the end of each statement except block statement.
cout << "<string to be displayed>";
DHANANJAY PATEL
+ 2
Post your code
+ 1
Thanks, Jefferson for asking. But I have fixed it