Sie sind auf Seite 1von 3

Assignment No.

01 Semester: Fall 2011 CS201: Introduction to Programming Instructions:

Total Marks: 20 Due Date:02/11/2011

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. Assignment is copied(partial or full) from any source (websites, forums, students, etc)

Note: You have to upload only .cpp file. Assignment in any other format (extension) will not be accepted and will be awarded with zero marks. For example, if you submit code in .doc (Word document) or .txt files, no reward will be given in any case. Objective: The objective of this assignment is to provide hands on experience of: Basic concepts of C/C++ language and Programming Dealing with Data types Conditional statements of C/C++ language Repetition Structures in C/C++ language Saving a program Compiling a program Executing the program

Guidelines: Code should be properly indented and well commented. Follow C/C++ rules while writing variable 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 where required (Marks will be deducted if inappropriate structure will be used).

Assignment Problem Statement: Virtual Restaurant

You are required to write a program for BILLING SYSTEM of a virtual restaurant. The basic idea is that by entering the meal price, your billing system will calculate the Sales Tax, Total amount and Complement offer upon that meal. The program will process the billing of undetermined number for customers. At the end, program will show sum of total amount of all the customers. Detailed Description: Billing System should work as under: You are required to take meal price as input from user. After getting this input, program will calculate the sales tax on it as given below: Meal Price Less than or 1000 Greater than less than or 2000 Greater than equal to 1000 and equal to 2000 Sales Tax applicable No sales Tax on it. 1% of meal price. 2% of meal price.

After calculating the sales tax, program will calculate and display the total amount of the meal according to given formula: Total Amount = Meal_Price + Sales_Tax Now, program will prompt to serve the complement sweet dish to customer on the basis of total amount as given below: Total Amount Less than 1000 Greater than or equal to 1000 and less than 2000 Greater than or equal to 2000 and less than 3000 Greater than or equal to 3000 and less than 4000 Other amounts Sweet Dishes Candies Sweet Bread Pudding Cake Trifle

After displaying the information of one customer, the program should ask the user if he/she again wants to process the bill of another customer. The user will be given two options. If user selects Y or y, the program will start the processing of another customer. If user selects N or n, the billing system exits.

Before exiting from billing system, this program should display the total number of customers it processed, and sum of total amount of all the customers.

Sample Output:

Das könnte Ihnen auch gefallen