You are on page 1of 7

CS PROJECT REPORT

Dhruv Jain
011.07.2022
12TH
GRADE COMPUTER SCIENCE
SESSION:- 2022-23
INTRODUCTION

The topic for my project is Cyber Cafe Management System. This document only consists of the Python
Part of my project. All the details are discussed below: ->

HYPOTHESIS

My project has been discussed in following steps:->

1. It is only the python part.


2. The various Python Functions used are as follows:->

~ 1. Print() Function: This function is used to print any statement.

~ 2. Input() Function: This function is used to input any data item.

~ 3. int() Functions: This function is used for converting any data type into integers.

~4. Conditional Expressions(if,else,elif): This function is used for processing the data. For
matching the requirements. Eg: if age==3:,else: . If age is equal to 3, then the process would be
followed after that, if age not equals 3, then the process followed by the else statement would be
executed.

3. The Flow Chart for my project is described below:

1
EXPLANATION

1. Print():

2. Input():

2
3. Conditional Expressions:

FULL CODE
print("<<---CYBER CAFE WELCOMES YOU--->> ")

print("1.Customer details")

print("2.Time Charges")

print("3.Bill")

print("4.Quit")

#For choice 1

name = input("Enter your name :")

age = int(input("Enter your age :"))

phone_no = int(input("Enter your phone number :"))

details = (name, age, phone_no)

ch_oice = int(input("Enter your choice :"))

if ch_oice == 1:

print("The details registered with us are as follows,","It is of the


form (name,age,number)---->",details)

#For Choice 2

ch_oice = int(input("Enter your choice :"))

3
if ch_oice == 2:

time = int(input("Enter the time :"))

amount = int(input("Enter the amount :"))

details_1 = [time, amount]

print("The details registered with us are:",details_1)

print("The money would have to pay is(In Indian


Currency):",time+amount)

print("THANK YOU VISIT AGAIN")

#For Choice 3

ch_oice = int(input("Enter your choice :"))

if ch_oice == 3:

print("Your requested has been carried forward to our systems")

b = input("Type YES or NO FOR PAYING THE BILL:")

if b == "YES":

print("Bill paid successfully")

print("THANK YOU VISIT AGAIN")

else:

print("Bill not paid,pay the bill to leave the place")

#For Choice 4

ch_oice = int(input("Enter your choice :"))

if ch_oice == 4:

print("THANK YOU VISIT AGAIN")

4
FULL CODE EXPLANATION

1. Used the print() function to give the customers an option of what they want to do
2. Instantly used input() function for collecting the details of customers.
3. After collecting the info, I used the input() function to again input the choice and perform the
operations accordingly..
4. Same process has been repeated before and after every choice..

5
THANK YOU FOR READING MY PROJECT REPORT !!

You might also like