MCPcopy Create free account
hub / github.com/PrajaktaSathe/Java / getData

Method getData

Programs/eduEmpDb.java:84–92  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

82 // daily wages
83 public double dwages;
84 public void getData() {
85 System.out.println("Enter employee details: ");
86 System.out.println("Enter name: ");
87 name = sc.nextLine();
88 System.out.println("Enter employee id: ");
89 emp_id = sc.nextInt();
90 System.out.println("Enter daily wages: ");
91 dwages = sc.nextDouble();
92 }
93 public void displayData() {
94 System.out.println("Displaying employee details: ");
95 System.out.println("Name: " + name);

Callers 1

mainMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected