私が受け取っているエラーは次のとおりです。
The method saySomething(String) in the type Finch is not applicable
for the arguments (Scanner)
コード:
Scanner user_input = new Scanner(System.in);
String userInput;
System.out.println("Enter your two words: ");
userInput = user_input.next();
myf.saySomething(user_input);
saySomething メソッドはスキャナー入力を受け付けないと思いますが、入力を文字列に変換するにはどうすればよいですか? ありがとう