+ 1
Can someone spot error in my code
5 Respuestas
+ 6
both semicolons at the end of your print statements are missing example {cout<<"you passed";} ◀ ☺
+ 3
I think you should change:
if(mark>50){cout<<"you passed"}
else{cout<<"congratulations you failed"}
To:
if(mark>50){cout<<"you passed";}
else{cout<<"congratulations you failed";}
+ 2
Tnk u very much
+ 1
Actually i am not getting what u are saying
+ 1
Tnx