ユーザー入力文字列を返すのに問題があります。私がコードを持っている場合:
System.out.println("please enter a digit: ");
number1 = in.nextInt();
System.out.println("enter another digit: ");
number2 = in.nextInt();
System.out.println("enter a string: ");
string = in.nextLine();
//calculations
System.out.println(number1);
System.out.println(number2);
System.out.println(string);
数字は出力しますが、文字列は出力しません。解決策はとてもシンプルな気がしますが、今は頭がおならをしています。どんな助けでもいただければ幸いです!