Search This Blog

UI/UX Design | Web Development | Mobile Application Development

Whether you need UI/ UX design, web development services, or mobile app development services, Qaabil Digitals will be more than happy to help you. We work with top software developers, designers, and project managers. We tailor our services to suit your exact needs. We closely look at your company, listen to your story, and bring about the best ideas and solutions that can help you drive solid results. We don’t just produce work that works. We produce work that matters. Get a quote now Or Talk to us

Wednesday 26 October 2011

A video rental shop maintains the inventory of videotapes that are being sold in the shop. Whenever a customer wants to rent a videotape, the sales person can check through the list to find out the availability of that particular videotape. If it is not available, then certain message will be displayed. If it is available, then the system displays the details. If the customer confirms his/her choice, the system displays the price and the due date for returning the videotape by (noor diana fauzi)

import java.util.*;
class moviesforrent
{
public static void main (String args[])
{
Scanner in = new Scanner (System.in);
String mname;
System.out.print ("\n\t Enter the movie name = ");
mname=in.nextLine();
movies ob = new movies();
ob.pricendetail(mname);
}
}

class movies
{
String ma[] = new String [4];
String mc[] = new String [4];
//price per week=RM10.
movies()
{
ma[0]="fast&furious";
ma[1]="pearl harbor";
ma[2]="death note";
ma[3]="ratatouille";

mc[0]="Josh Hartnett";
mc[1]="Ben Affleck";
mc[2]="Michael Bays";
mc[3]="Jerry Bruckheimer";
}

void pricendetail(String mname)
{
int i=0,j=0;
while (i<4)
{
if (mname.equals(ma[i]))
{
System.out.println ("\n\t Movie: "+mname+" \n\t Main character: "+mc[i]+"\n\t Price per week = RM 10.00");
j=1;
break;
}
++i;
}
if (j==0)
System.out.println ("\n\t "+mname+" is not available.");
}

}

10 comments:

  1. may I know, what is the output ?

    ReplyDelete
  2. Here is output of the program:

    Enter the movie name = fast&furious

    Movie: fast&furious
    Main character: Josh Hartnett
    Price per week = RM 10.00


    I hope you got it.

    ReplyDelete
    Replies
    1. sir can you please send me this program with using constuctors and destructors

      Delete
  3. please give me the report of this project

    ReplyDelete
  4. Replies
    1. can you please publish this program with constructors and destructors

      Delete
  5. Movie Store – Manage video rentals and controls when videos are checked out, due to return, overdue fees and for added complexity create a summary of those accounts which are overdue for contact.

    kalaw soalan ni blh pakai ke cooding tu?

    ReplyDelete
    Replies
    1. yes.,please give me an idea in writing code for managing video rentals and controls when videos are checked out, due to return, overdue fees and for added complexity create a summary of those accounts which are overdue for contact.

      Delete
  6. anyone can please send me this program using constructors and destructors

    ReplyDelete
  7. anyone can please publish this program with constructors and destructors

    ReplyDelete

Share