English

Define a Class Named Parkinglot with the Following Description : Instance Variables/Data Members: Int Vno — to Store the Vehicle Number - Computer Applications

Advertisements
Advertisements

Question

Define a class named ParkingLot with the following description :
Instance variables/data members:
int vno — To store the vehicle number
int hours — To store the number of hours the vehicle is parked in the parking lot
double bill — Tb store the bill amount

Member methods:
void input( ) — To input and store the vno and hours.
void calculate( ) — To compute the parking charge at the rate of Rs.3 for the first hours or part thereof, and Rs. 1.50 for each additional hour or part thereof.
void display ( ) — To display the detail
Write a main method to create an object of the class and call the above methods.

Answer in Brief

Solution

import java.util.*;
class ParkingLot
{
    private int vno, hours;
    double bill;
    public void input ( )
    { 
     Scanner sc=new Scanner (System.in);
     System.out.println ("enter Vehicle Number");
     vno=sc.nextInt( );
     System.out.println ("Enter Number of Hours")

     hours=sc.nextInt( );
}
public void calculate( )
{
    if(hours<=1)
    bill=hours*3
   else
   bill=3+(hours - 1)*1.5;
}
  public void display ( )
{
  System.out.println("Vehicle Number" + vno);
  System.out.println("Number of Hours" + hours);
  System.out.println("parking charges" + bill);
}
Public static void main ( )
{
  ParkingLot p = new Parking Lot ( );
  p.input ( );
  p.calculate ( );
  p.display ( );
}
}            

shaalaa.com
  Is there an error in this question or solution?
2014-2015 (March) Set 1
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×