about summary refs log tree commit diff
path: root/usth/ICT2.2/labwork/4/Employ.java
diff options
context:
space:
mode:
Diffstat (limited to 'usth/ICT2.2/labwork/4/Employ.java')
-rw-r--r--usth/ICT2.2/labwork/4/Employ.java30
1 files changed, 30 insertions, 0 deletions
diff --git a/usth/ICT2.2/labwork/4/Employ.java b/usth/ICT2.2/labwork/4/Employ.java
new file mode 100644
index 0000000..924e1d3
--- /dev/null
+++ b/usth/ICT2.2/labwork/4/Employ.java
@@ -0,0 +1,30 @@
+import java.io.File;
+import java.io.FileNotFoundException;
+import java.util.ArrayList;
+import java.util.Scanner;
+
+class Employ
+{
+  private static Employee scan(Scanner s)
+  {
+    int ID = s.nextInt();
+    s.nextLine();
+    return new Employee(ID, s.nextLine(), s.nextLine(),
+                        s.nextDouble(), s.nextDouble());
+  }
+
+  public static void main(String... args) throws FileNotFoundException
+  {
+    var stdin = new Scanner(System.in);
+    var f = new File("employees.txt");
+    var file = new Scanner(f);
+    var employees = new ArrayList<Employee>();
+    int n = stdin.nextInt();
+    for (int i = 0; i < n; ++i)
+      {
+        employees.add(scan(stdin));
+        employees.add(scan(file));
+      }
+    employees.forEach(System.out::println);
+  }
+}