about summary refs log tree commit diff
path: root/usth/ICT2.2/labwork/4/Employee.java
diff options
context:
space:
mode:
authorNguyễn Gia Phong <vn.mcsinyx@gmail.com>2019-12-15 10:34:58 +0700
committerNguyễn Gia Phong <vn.mcsinyx@gmail.com>2019-12-15 15:00:00 +0700
commit67393f42f41ab92219deb549f711121c4dab845b (patch)
treeebd0eb6c8a3d3bd69937312179aeaf273ea29c80 /usth/ICT2.2/labwork/4/Employee.java
parentb38d9929f7a015b56b847fde7e83f814f354497e (diff)
downloadcp-67393f42f41ab92219deb549f711121c4dab845b.tar.gz
[usth/ICT2.2] Object Oriented Programming
Diffstat (limited to 'usth/ICT2.2/labwork/4/Employee.java')
-rw-r--r--usth/ICT2.2/labwork/4/Employee.java27
1 files changed, 27 insertions, 0 deletions
diff --git a/usth/ICT2.2/labwork/4/Employee.java b/usth/ICT2.2/labwork/4/Employee.java
new file mode 100644
index 0000000..51647b5
--- /dev/null
+++ b/usth/ICT2.2/labwork/4/Employee.java
@@ -0,0 +1,27 @@
+public class Employee
+{
+  private int ID;
+  private String name;
+  private String dep;
+  private double basic;
+  private double extra;
+
+  public Employee(int ID, String name, String dep, double basic, double extra)
+  {
+    this.ID = ID;
+    this.name = name;
+    this.dep = dep;
+    this.basic = basic;
+    this.extra = extra;
+  }
+
+  public int getID() { return ID; }
+  public String getName() { return name; }
+  public String getDep() { return dep; }
+  public double getIncome() { return basic + extra*2.5; }
+
+  public String toString()
+  {
+    return String.format("#%d %s [%s]: %g", ID, name, dep, getIncome());
+  }
+}