-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMedicalReportSystem.java.txt
More file actions
100 lines (78 loc) · 2.44 KB
/
Copy pathMedicalReportSystem.java.txt
File metadata and controls
100 lines (78 loc) · 2.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
import java.util.Scanner;
// Patient Class
class Patient {
String name;
int age;
String gender;
Patient(String name, int age, String gender) {
this.name = name;
this.age = age;
this.gender = gender;
}
void display() {
System.out.println("Patient Name : " + name);
System.out.println("Age : " + age);
System.out.println("Gender : " + gender);
}
}
// Test Class
class Test {
String testName;
String result;
Test(String testName, String result) {
this.testName = testName;
this.result = result;
}
void display() {
System.out.println("Test Name : " + testName);
System.out.println("Result : " + result);
}
}
// Diagnosis Class
class Diagnosis {
String doctorName;
String diagnosis;
Diagnosis(String doctorName, String diagnosis) {
this.doctorName = doctorName;
this.diagnosis = diagnosis;
}
void display() {
System.out.println("Doctor : " + doctorName);
System.out.println("Diagnosis : " + diagnosis);
}
}
// Main Class
public class MedicalReportSystem {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("=== ENTER PATIENT DETAILS ===");
System.out.print("Name: ");
String name = sc.nextLine();
System.out.print("Age: ");
int age = sc.nextInt();
sc.nextLine();
System.out.print("Gender: ");
String gender = sc.nextLine();
Patient p = new Patient(name, age, gender);
System.out.println("\n=== ENTER TEST DETAILS ===");
System.out.print("Test Name: ");
String testName = sc.nextLine();
System.out.print("Result: ");
String result = sc.nextLine();
Test t = new Test(testName, result);
System.out.println("\n=== ENTER DIAGNOSIS ===");
System.out.print("Doctor Name: ");
String doctor = sc.nextLine();
System.out.print("Diagnosis: ");
String diag = sc.nextLine();
Diagnosis d = new Diagnosis(doctor, diag);
System.out.println("\n\n===== MEDICAL REPORT =====");
p.display();
System.out.println("--------------------------");
t.display();
System.out.println("--------------------------");
d.display();
System.out.println("==========================");
sc.close();
}
}