Posts by Francisco Neto • 41 points
2 posts
-
0
votes2
answers100
viewsA: Problems in creating class and method
You mixed class creation with method creation. First create the class: public class NomeDaClasse { } and the method you can put within the class: public String verifyWord(String wordChosen, Scanner…
-
4
votes3
answers932
viewsA: Current or formal argument lists differs in length
The method was declared with 2 parameters and in the call, within the main method, none of the required parameters were passed.
javaanswered Francisco Neto 41