0% found this document useful (0 votes)
54 views4 pages

Hospital Management System Project Report

The document presents a project report on a Hospital Management System (HMS) developed by a group of students for their Bachelor of Engineering degree. The HMS aims to automate hospital operations through various integrated modules such as patient management and billing. It includes a Java code snippet demonstrating the patient management functionality.

Uploaded by

jadhavsi125
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
54 views4 pages

Hospital Management System Project Report

The document presents a project report on a Hospital Management System (HMS) developed by a group of students for their Bachelor of Engineering degree. The HMS aims to automate hospital operations through various integrated modules such as patient management and billing. It includes a Java code snippet demonstrating the patient management functionality.

Uploaded by

jadhavsi125
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 4

Hospital Management System

Submitted in partial fulfillment of the requirement of

University of Mumbai for the Degree of

Bachelor of Engineering in Computer Science and Engineering

Submitted By

Student 1 Name

Student 2 Name

Student 3 Name

Student 4 Name

Supervisor: Guide Name

Certificate
This is to certify that the project report entitled "Hospital Management System"

has been successfully completed by the following students:

Name Roll No.

Student 1 A733

Student 2 A733

Student 3 A733

Student 4 A733

Declaration
We declare that this written submission for the project entitled "Hospital Management System"

represents our ideas in our own words. Where others' ideas have been used, proper citation and
reference have been provided.

Abstract
The Hospital Management System (HMS) is a comprehensive solution designed to automate

hospital operations. It integrates various modules such as patient management, doctor scheduling,

medical records, billing, and inventory control, enabling efficient and smooth functioning of a

healthcare facility.

3. Project Implementation
Here is a Java code snippet for patient management:

import java.util.Scanner;

class Patient {

String name;

int age;

String ailment;

public Patient(String name, int age, String ailment) {

this.name = name;

this.age = age;

this.ailment = ailment;

public void displayPatientDetails() {

System.out.println("Patient Name: " + name);


System.out.println("Age: " + age);

System.out.println("Ailment: " + ailment);

public class HospitalManagementSystem {

public static void main(String[] args) {

Scanner sc = new Scanner(System.in);

System.out.println("Enter Patient Name:");

String name = sc.nextLine();

System.out.println("Enter Age:");

int age = sc.nextInt();

sc.nextLine();

System.out.println("Enter Ailment:");

String ailment = sc.nextLine();

Patient patient = new Patient(name, age, ailment);

patient.displayPatientDetails();

Output Example:
Enter Patient Name:

John Doe

Enter Age:

45
Enter Ailment:

Fever

Patient Name: John Doe

Age: 45

Ailment: Fever

You might also like