package Chapter2;import java.util.Scanner; // Scanner is in java.utilpublic class TestScanner {public static void main(String args[]) {// Create a ScannerScanner scanner = new Scanner(System.in);// Prompt the user to enter an integerSystem.out.print("Enter an integer: ");int intValue = scanner.nextInt();System.out.println("You entered the integer " + intValue);// Prompt the user to enter a double valueSystem.out.print("Enter a double value: ");double doubleValue = scanner.nextDouble();System.out.println("You entered the double value "+ doubleValue);// Prompt the user to enter a stringSystem.out.print("Enter a string without space: ");String string = scanner.next();System.out.println("You entered the string " + string);}}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。