0
I have one error if else array in my code. Thanks you.
If else array. https://code.sololearn.com/cQPk8WEuT2mu/?ref=app
2 Antworten
+ 5
On line 14
You have got an *else-if* statement inside the *if* statement.
+ 4
Adding to Arsenic
1. Your mytab2 variable is of type int[] but you wrote int.
2. You're returning boolean while it expects you to return int.
3. return statement is missing for your method myfunction().