Pages

Saturday, April 16, 2011

CS201 Assignment No. 1 solution


Instructions please read the following instructions carefully before submitting assignment:

It should be clear that your assignment will not get any credit if:
§ The assignment is submitted after due date.
§ The submitted assignment does not open or file is corrupt.
§ All types of plagiarism are strictly prohibited.

Note:You have to upload only .cpp file. Assignment in any other format (extension) will not be accepted. If you will submit code in .doc (Word document) you will get zero marks.

Objective
The objective of this assignment is to provide hands on experience of using
§Basic concepts of C++ language and Programming
§Conditional statements of C language §Dealing with Data types §Function in c language
§Writing and editing a C program
§Saving a C program
§Compiling a C program
§Executing the program

Guidelines
§Code should be properly aligned and well commented.
§Follow c/c++ rules while writing variables names, function names etc
§Use only dev-C++ for this assignment.
§Use appropriate c/c++ structure i.e. if-else, switch statement etc to get inputs from user.(Marks will be deducted if inappropriate structure will be used).
Assi
Problem Statement: Rent A CAR
You are required to write a program for RENT A CAR SYSTEM. The basic idea is that user will provide customer information, Car Model, and number of days. Upon this information your program will calculate the Amount for the Car. Rent Amount will be calculated on the Basis of Type of Model he / she is going to take on Rent and of Days on Rent. There are Types of Models available “2009”, “2010” and “2011”. ForModel 2009 Minimum Rent per day is Rs. 5000/- for Model “2010” Amount is Rs. 8000/- and for “2011” Amount is Rs. 10,000/- Per Day. 

Detailed Description:
1.The program should display Please provide customer Name: Please provide Car Model.Enter ‘A’ for Model 2009. Enter ‘B’ for Model 2010. Enter ‘C’ for Model 2011. Then your program should take these inputs, 2.Depending upon the choices that user has entered, your program will further display the prompt 3.If user has entered Car Model, then your program should prompt the user to enter the Car Number and No. of Days for which car is required. 
-----------------------------------------------------------------
Model Name :
Number of Days:
-----------------------------------------------------------------
4.After getting all this information, now write a function which will calculate rental/charged amount on the basis of this information. 
To calculate rental/charged amount we will use this formula: Rental Amount = charged amount * number of days Charged amount will be different for different Car Models as described above. 
After calculating Rent Amount for Car display it on the screen.
Sample Output
Please provide customer Name: Ahsan Please provide Car Model Description. Enter ‘A’ for Model 2009. Enter ‘B’ for Model 2010. Enter ‘C’ for Model 2011 
Please provide following information:
Car No. : LWQ234
Number of day’s: 3
Final output should be like this:
-----------------------------------------------------------------
Customer Name: Ahsan
Car Model : 2009
Car No. : LWQ234
Number of days: 03
Your Rental Amount is: 15000
-----------------------------------------------------------------
Note:
Your assignment must be uploaded/submitted on or before April 18, 2011. Make it sure to submit only Cpp file of your Assignment. Assignment in notepad format or MS Word format will not be accepted.

SOLUTION:

#include
#include

double TotalPayAbleRent(int,int);
main()
{
char name[20], choice,vehicle_number[20];
int total_days,amount_of_day1,amount_of_day2,amount_of_day3,model1,model2,model3;
model1 = 2009;
model2 = 2010;
model3 = 2011;
amount_of_day1 = 5000;
amount_of_day2 = 8000;
amount_of_day3 = 10000;
cout<<"=======CODDED BY: ALIMS(for those who are not much familiar with C++)=======";
cout<<"\n"<<"provide customer name :";
cin>>name;
cout<<"Please provide Car Description";
cout<<"\n"<<"Enter 'A' for model 2009";
cout<<"\n"<<"Enter 'B' for model 2010";
cout<<"\n"<<"Enter 'C' for model 2011";
cin>>choice;
cout<<"Please enter car number :";
cin>>vehicle_number;
cout<<"Please enter number of days :" ;
cin>>total_days;


if(choice=='a')
{

cout<<"~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*." <cout<<"Customer Name :" <cout<<"\n"<<"Car Model :" <cout<<"\n"<<"Number of days :" <cout<<"\n"<<"Your Rental Amount is :" <cout<<"\n"<<"~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*." <}
else if(choice=='A')
{

cout<<"~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*." <cout<<"Customer Name :" <cout<<"\n"<<"Car Model :" <cout<<"\n"<<"Number of days :" <cout<<"\n"<<"Your Rental Amount is :" <cout<<"\n"<<"~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*." <}
else if(choice=='B')
{

cout<<"~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*." <cout<<"Customer Name :" <cout<<"\n"<<"Car Model :" <cout<<"\n"<<"Number of days :" <cout<<"\n"<<"Your Rental Amount is :" <cout<<"\n"<<"~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*." <}
else if(choice=='b')
{

cout<<"~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*." <cout<<"Customer Name :" <cout<<"\n"<<"Car Model :" <cout<<"\n"<<"Number of days :" <cout<<"\n"<<"Your Rental Amount is :" <cout<<"\n"<<"~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*." <}
else if(choice=='C')
{

cout<<"~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*." <cout<<"Customer Name :" <cout<<"\n"<<"Car Model :" <cout<<"\n"<<"Number of days :" <cout<<"\n"<<"Your Rental Amount is :" <cout<<"\n"<<"~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*." <}
else if(choice=='c')
{

cout<<"~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*." <cout<<"Customer Name :" <cout<<"\n"<<"Car Model :" <cout<<"\n"<<"Number of days :" <cout<<"\n"<<"Your Rental Amount is :" <cout<<"\n"<<"~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*.~*." <}
else
{
cout<<"insaan ban kar sahi input do";
}

getch();
}
double TotalPayAbleRent(int rentofday,int tdays)
{
return rentofday*tdays;
}

ANOTHER SOLUTION:

#include
#include
int Rent(int d, int m);
int main()

{
int days;
char cName[15],mName[7];
char cModel;
cout<<"Please provide customer Name: ";
cin>>cName;
cout<<"\n Please provide Car Model."<cout<<"|..........................................|"<cout<<"| Enter 'A' for Model 2009. |"<cout<<"| Enter 'B' for Model 2010. |"<cout<<"| Enter 'C' for Model 2011. |"<cout<<"|..........................................|"<cin>>cModel;

cout<<"\n please provide the car Number that you want to take on Rent: ";
cin>>mName;
cout<<"\n For how many days you want take car on rent? : ";
cin>>days;
cout<<" customer information and total rent"<switch (cModel)
{
case 'A':
{
cout<<"|---------------------------------"<cout<<"| customer Name: "<cout<<"|Car Model :2009"<cout<<"|car Number :"<cout<<"|days :"<cout<<"|total Rent :"<cout<<"|---------------------------------"<}
break;
case 'B':
{
cout<<"|---------------------------------"<cout<<"| customer Name: "<cout<<"|Car Model :2010"<cout<<"|car Number :"<cout<<"|days :"<cout<<"|total Rent :"<cout<<"|---------------------------------"<}
break;
case 'C':
{
cout<<"|---------------------------------"<cout<<"| customer Name: "<cout<<"|Car Model :2011"<cout<<"|car Number :"<cout<<"|days :"<cout<<"|total Rent :"<cout<<"|---------------------------------"<}
break;
default:
{
cout<<"sorry you entered ivalid car model";
}
}

getch();

}
int Rent(int d, int m)
{
int total_rent;
total_rent=d*m;
return total_rent;
}

Another Idea Solution:

#include
#include
#include
using namespace std;
int main()
...{
char Model;

string Name;

string CarNo;

int Day, Amount, flag=0, CarMod;

cout <<"Please provide customer name: ";

cin >>Name;

cout <<"\n\nPlease provide car model description:"<
cout <<" Enter 'A' for Model 2009" <
cout <<" Enter 'B' for Model 2010" <
cout <<" Enter 'C' for Model 2011" <
cout <<"\nCar Model: ";

cin >>Model;

while (flag!=1)
{
if (Model=='A' || Model=='a')
{
Amount=5000;
CarMod=2009;
flag=1;
}
else if (Model=='B' || Model=='b')
{
Amount=8000;
CarMod=2010;
flag=1;
}
else if (Model=='C' || Model=='c')
{
Amount=10000;
CarMod=2011;
flag=1;
}
else
{
cout <<"\nPlease Enter 'A', 'B' or 'C' only" <cout <<"\nCar Model: ";
cin >>Model;
}
}
cout <<"Please provide following information:"<
cout <<"\nCar No. : ";

cin >>CarNo;

cout <<"Number of days: ";

cin >>Day;

cout <<"\n-------------------------------------------"<
cout <<"Customer Name : " <
cout <<"Car Model : " <
cout <<"Car No. : " <
cout <<"Number of days : "<
cout <<"Your rental amount is : "<
cout <<"\n-------------------------------------------";
getche();
}

0 comments:

Post a Comment

Is this blog is useful for you?

Powered by Blogger.