Computer Science, asked by khan17089, 1 year ago

hotel Management system in java ​


nimitshah622: What functions should it have?
khan17089: storing the data, showing the data, deleting the data
khan17089: its not about food it is booking the room
nimitshah622: Thats quite long but is easy!
khan17089: like a hotel room booking
nimitshah622: but the points required should be more
nimitshah622: nevertheless I will answer
khan17089: help me out
nimitshah622: give me some details
nimitshah622: i have a plan ready

Answers

Answered by priyanshu1729
0
The main task for Hotel Management Project in java is ahead to see all the things whether they are running smoothly or not, this software will be capable of doing or performing following tasks:

● Reservation.
● Registration.
● Billing/Clearance of ● Guest Folio.
● Checkout.

This Hotel Management Project in java is developed keeping in mind the various aspects of hotels in public sector as well as in private sector. This software is intended to be developed for Deluxe Class / Super-Deluxe Class Hotels. A Comparison will be done of Deluxe Class Hotels in public sector and in private sector and then the resultant / desired software will be developed.

This Hotel Management project in java uses Java as its front end and MS-Access database management system will be used as “Backend” which will be capable of recording information and high level language “Java” will serve as “Front end” for the software. The database will be capable of doing following operations:

Keeping records of various customers that visit in the hotel.
Keeping records of various items that are served to the customers.
Keeping records of customer’s Check-in/Check-out timings.

khan17089: thanks but i want the simple basic code
nimitshah622: import java.util.*;
class hotel
{
static void main()
{
String s;
int n;
Scanner sc = new Scanner(System.in);
System.out.println("Enter Name:");
s=sc.nextLine();
System.out.println("Enter Number of ppl:");
n=sc.nextInt();

}
}
nimitshah622:
means next line
Answered by nimitshah622
1

import java.util.*;

class hotel

{

static void main()

{

String s;

int n;

Scanner sc = new Scanner(System.in);

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

s=sc.nextLine();

System.out.println("Enter Number of ppl:");

n=sc.nextInt();

}

}

Similar questions