java 11
java 11
(314317)
Academic year 2024-25
Micro-project
SARASWATI EDUCATION SOCIETY
YADAVRAO TASGAONKAR
POLYTECHNIC
Project Report On
JAVA PROGRAMMING
Academic Year
2024 – 2025
Affiliated to
MAHARASHTRA STATE BOARD OF TECHNICAL
EDUCATION
GROUP MEMBERS
GUIDED BY
MISS. SAYALI PATIL
MAHARASHTRA STATE BOARD OF TECHNICAL
EDUCATION
Certificate
This is to certify that Ms.SOHAM RAJARAM BHAT. Roll No.: 25of
forth Semester of Diploma in Computer engineering of Institute
Yadavrao Tasgaonkar Polytechnic (Code:0960) has completed the term
work satisfactorily in JAVA PROGRAMMING (314317) for the
academic year 2024 To 2025 as Prescribed in curriculum .
Certificate
This is to certify that Ms.HARSHAL VASUDEV PAKHARE . Roll No.:
27of forth Semester of Diploma in Computer engineering of Institute
Yadavrao Tasgaonkar Polytechnic (Code:0960) has completed the term
work satisfactorily in JAVA PROGRAMMING (314317) for the
academic year 2024 To 2025 as Prescribed in curriculum.
Certificate
This is to certify that Ms.PRATHAMESH RAJESH CHAVAN. Roll
No.: 21of forth Semester of Diploma in Computer engineering of
Institute Yadavrao Tasgaonkar Polytechnic (Code:0960) has completed
the term work satisfactorily in JAVA PROGRAMMING (314317) for the
academic year 2024 To 2025 as Prescribed in curriculum.
This is to certify that the project titled “Medical Store Management System”
is a Bonafide work carried out by student of Diploma in Computer Engineering
as a part of curriculum as prescribed by MSBTE. I hereby declare that the
project work has not formed the basis for the award previously of any Diploma,
Associate ship, Fellowship or any other similar title according to my
knowledge.
Signature of students
1.
2.
3.
4.
INDEX
1 Abstract 8
2 Introduction 9
Source
3 Code 10
4 Output 14
5 Conclusion 16
6 Refrence 17
Abstract:
With this program, users can easily add information about various medicines,
including their names, quantities, and prices. By leveraging object-oriented
programming principles, the system structures each medicine as an object of
the `Medicine` class, enabling organized data management and retrieval. The
`MedicalStoreManagement` class serves as the entry point for user
interaction, providing prompts for inputting medicine details and displaying
the updated list
of medicines.
This system offers an intuitive and user-friendly interface for medical store
personnel to monitor their inventory effectively. By streamlining the process
of managing medicine stocks, it contributes to improved efficiency, accuracy,
and transparency in medical store operations. Overall, this program lays the
groundwork for a robust Medical Store Stock Management System,
addressing the essential needs of medical facilities in maintaining adequate
supplies of vital medications.
Source Code :
import java.util.Scanner;
class Medicine {
private String name;
private int quantity;
private double price;
System.out.println("\nMedicine List:");
for (Medicine medicine : medicines) {
medicine.displayMedicine();
System.out.println();
}
scanner.close();
}
}
Output :
Name: Ibuprofen
Quantity: 50
Price: 3.0
Name: Aspirin
Quantity: 80
Price: 1.8
Name: Amoxicillin
Quantity: 30
Price: 5.2
Name: Omeprazole
Quantity: 60
Price: 4.7
Conclusion:
Reference:
www.geeksforgeeks.com
www.javatpoint.com
www.javaprojects.com