Преглед на файлове

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
 }