如何使用Java中的Scaner类从控制台读取输入?如何使用Scanner班级,等级?就像这样:System.out.println("Enter your username: ");Scanner = input(); // Or something like this, I don't know the code基本上,我只想让扫描仪读取用户名的输入,并将输入分配给String变量。
4 回答
一只甜甜圈
TA贡献1836条经验 获得超5个赞
System.out.print("Insert a number: "); int number = input.nextInt(); input.nextLine(); // This line you have to add (it consumes the \n character) System.out.print("Text1: "); String text1 = input.nextLine(); System.out.print("Text2: "); String text2 = input.nextLine();
添加回答
举报
0/150
提交
取消