+ 2

What’s the problem with my code?

Int mark = 90; If(mark<50){ cout << “ You failed.\n”; } else { cout <<“You passed.\n”; }

14th Jun 2019, 10:58 AM
Никита Кравченко
Никита Кравченко - avatar
4 Respuestas
+ 16
Hello !! What problem are you facing in this code ? Can you explain your problem so that we can help.
14th Jun 2019, 11:07 AM
Nova
Nova - avatar
+ 6
Looks like you're using non Western quotation marks (probably from a Russian keyboard?). You need to use these standard ASCII quotes: "
14th Jun 2019, 11:33 AM
Anna
Anna - avatar
+ 5
You need the double quote which can be done with holding holding shift +double quote using the qwerty keyboard type and standard ancsii type to switch if you don't have anscii use window + space
14th Jun 2019, 11:42 AM
GeneralZod
GeneralZod - avatar
+ 4
What error message/awkward output did you get?
14th Jun 2019, 11:07 AM
HonFu
HonFu - avatar