浏览代码

Tested and updated methods

Trinh Tong 6 年前
父节点
当前提交
a446339267
共有 1 个文件被更改,包括 8 次插入2 次删除
  1. 8
    2
      Console.java

+ 8
- 2
Console.java 查看文件

@@ -23,10 +23,16 @@ public class Console {
23 23
     }
24 24
 
25 25
     public static Integer getIntegerInput(String prompt) {
26
-        return null;
26
+        Scanner scanner = new Scanner(System.in);
27
+        println(prompt);
28
+        Integer userInput = scanner.nextInt();
29
+        return userInput;
27 30
     }
28 31
 
29 32
     public static Double getDoubleInput(String prompt) {
30
-        return null;
33
+        Scanner scanner = new Scanner(System.in);
34
+        println(prompt);
35
+        Double userInput = scanner.nextDouble();
36
+        return userInput;
31 37
     }
32 38
 }