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

Method getData

Programs/eduEmpDb.java:60–68  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

58 // grade
59 public String grade;
60 public void getData() {
61 System.out.println("Enter employee details: ");
62 System.out.println("Enter name: ");
63 name = sc.nextLine();
64 System.out.println("Enter employee id: ");
65 emp_id = sc.nextInt();
66 System.out.println("Enter grade: ");
67 grade = sc.next();
68 }
69 public void displayData() {
70 System.out.println("Displaying employee details: ");
71 System.out.println("Name: " + name);

Callers 1

mainMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected