0
Can you fix my error
2 Réponses
+ 2
there are many other errors,
here is the fixed code compare it with yours.
https://code.sololearn.com/c3DH1iQTrKpu/?ref=app
it's interactive so it will not work on sololearn. try it somewhere else.
+ 1
you didn't name the class in line 2
public class xxxxx
some if statements are wrong.
division operator is / not \
if{( )} line 34 & 49...
should be if(condition ){code }
declaring Int N ( missing semicolon)
should be int N;
int not Int. line 6 & 11