+ 2
What’s the problem with my code?
Int mark = 90; If(mark<50){ cout << “ You failed.\n”; } else { cout <<“You passed.\n”; }
4 Respuestas
+ 16
Hello !!
What problem are you facing in this code ? Can you explain your problem so that we can help.
+ 6
Looks like you're using non Western quotation marks (probably from a Russian keyboard?). You need to use these standard ASCII quotes: "
+ 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
+ 4
What error message/awkward output did you get?