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

Method getData

Programs/eduEmpDb.java:40–48  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

38 // speed
39 public double speed;
40 public void getData() {
41 System.out.println("Enter employee details: ");
42 System.out.println("Enter name: ");
43 name = sc.nextLine();
44 System.out.println("Enter employee id: ");
45 emp_id = sc.nextInt();
46 System.out.println("Enter speed: ");
47 speed = sc.nextDouble();
48 }
49 public void displayData() {
50 System.out.println("Displaying employee details: ");
51 System.out.println("Name: " + name);

Callers 1

mainMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected