0
What is error in line 19what is return statement need?
3 ответов
+ 11
"public int value()" ..... means that this method returns an int... try "public void value()....." instead or add "return 0" at bottom of function...
+ 4
your braces are all over the place
0
thank you