0% found this document useful (0 votes)
16 views48 pages

Cs Investigatory

Uploaded by

aakashaaditya182
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
16 views48 pages

Cs Investigatory

Uploaded by

aakashaaditya182
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 48

PM SHRI

KENDRIYA VIDYALAYS AFS SULUR

COMPUTER SCIENCE INVESTIGATORY


SSCE PROJECT 2023-2024
RESORT MANAGMENT

SUBMITTED BY: SRIMAN.R


SUBMITTED TO: MRS S.SANGEETHA
SSCE ROLLNO:
TABLE OF CONTENTS

SNO TOPIC PAGE NO.


01. CERTIFICATE
02.
ACKNOWLEDGEMENT
03. INTRODUCTION
04. ABOUT THE PROJECT
05. SOURCE CODE
06. OUTPUT
07. BIBLIOGRAPHY

CERTIFICATE
This is to certify that SRIMAN.R of Class XII B of Kendriya
Vidyalaya AFS Sulur School has completed the Computer
Science Investigatory Project entitled “RESORT
MANAGEMENT” in the school Computer Science lab.

This work has been carried out under my supervision and


guidance. It is my pleasure that he has been able to prepare
the project within the stipulated time frame to my utmost
satisfaction.

The progress of the project has been continuously reported and


been in my knowledge consistently. The approach towards the
subject has been sincere and scientific.

INTERNAL INVIGILATOR SIGN:

EXTERNAL INVIGILATOR SIGN:

PRINCIPAL SIGN:

ACKNOWLEGEMENT
I FEEL EXTREMELY ELATED ON COMPLETION OF THIS PROJECT. I

WOULD LIKE TO THANK AND EXPRESS MY GRATITUDE TO MY

COMPUTER SCIENCE TEACHER MRS SIR FOR GUIDING AND

SUPPORTING ME THROUGH THIS ENDEAVOR WHICH COULD NOT

HAVE BEEN SUCCESSFUL WITHOUT HER GUIDANCE.

INTRODUCTION
Python is a high-level, general-purpose programming
language. Its design philosophy emphasizes code
readability with the use of significant indentation.

What can Python do?


>Python can be used on a server to create web applications.
>Python can be used alongside software to create
workflows.
>Python can connect to database systems. It can also read
and modify files.
>Python can be used to handle big data and perform
complex mathematics.
>Python can be used for rapid prototyping, or for
production-ready software development.
Why Python?
>Python works on different platforms (Windows, Mac,
Linux, Raspberry Pi etc).
>Python has a simple syntax similar to the English language.
>Python has syntax that allows developers to write
programs with fewer lines than some other programming
languages.
>Python runs on an interpreter system, meaning that code
can be executed as soon as it is written. This means that
prototyping can be very quick.

The most recent major version of Python is Python 3, which


we shall be using in this tutorial. However, Python 2,
although not being updated with anything other than
security updates, is still quite popular.
In this tutorial Python will be written in a text editor. It is
possible to write Python in an Integrated Development
Environment, such as Thonny, Pycharm, Netbeans or Eclipse
which are particularly useful when managing larger
collections of Python files.
Python Syntax compared to other programming languages
Python was designed for readability, and has some
similarities to the English language with influence from
mathematics.
Some common statements in python and their functions are
as follows:
 The if statement, which conditionally executes a block of
code, along with else and elif (a contraction of else-if)
 The for statement, which iterates over an iterable object,
capturing each element to a local variable for use by the
attached block
 The while statement, which executes a block of code as
long as its condition is true
 The try statement, which allows exceptions raised in its
attached code block to be caught and handled
by except clauses (or new syntax except* in Python 3.11
for exception groups); it also ensures that clean-up code in
a finally block is always run regardless of how the block
exits
 The raise statement, used to raise a specified exception or
re-raise a caught exception
 The class statement, which executes a block of code and
attaches its local namespace to a class, for use in object-
oriented programming
 The def statement, which defines a function or method
 The with statement, which encloses a code block
within a context manager (for example, acquiring
a lock before it is run, then releasing the lock; or
opening and closing a file), allowing resource-
acquisition-is-initialization (RAII)-like behavior and
replacing a common try/finally idiom
 The break statement, which exits a loop
 The continue statement, which skips the rest of the
current iteration and continues with the next
 The del statement, which removes a variable—deleting
the reference from the name to the value, and producing
an error if the variable is referred to before it is redefined
 The pass statement, serving as a NOP, syntactically
needed to create an empty code block
ABOUT THE PROJECT
Our project ‘Resort Management’ is about managing
resort called ‘PRS Star Hotels’. Let’s assume that a
family comes to our resort, they were given a family
card. With this card only they are going to buys
things.At the time of checkout by inserting the card
they can check their total bill and they can pay and go.
This project helps in following manner for our resort:
1.It first take the family card and the customer details
are filled and they are asked to select their type of
room.
2. And after selecting the type of room they were show
a variety of options like : Themepark, Restaurant ,
Gaming etc.
3.Customer is allowed to select their theme park
pacakage and other stuffs like foods, entertainment
etc.

4. The total expenditure is added in the card, at the


time of checkout they can insert their card and check
their bill and pay their amount and then they can
checkout.
SOURCE CODE:
import smtplib
import random
from email.message import EmailMessage
from email.utils import formataddr
from datetime import date
from email.mime.text import MIMEText
from email.mime.multipart import MIMEMultipart
from email.mime.base import MIMEBase
from email import encoders

class hotelfarecal:

ab=random.randint(100,400)
def
__init__(self,rt='',s=0,p=0,r=0,t=0,tp=0,a=1800,name='',address='',ci
ndate='',coutdate='',rno=ab,subject=''):

print ("\n\n*****WELCOME TO PRS Star Hotels*****\n")

self.rt=rt

self.r=r

self.t=t
self.subject=subject
self.p=p
self.tp=tp
self.s=s
self.a=a
self.name=name
self.address=address
self.cindate=cindate
self.coutdate=coutdate
self.rno=rno
def inputdata(self):

self.name=input("\nEnter your name:")


self.address=input("\nEnter your address:")
self.cindate=date.today()
self.coutdate=input("\nEnter your checkout date(YYYY-MM-
DD):")
print ("We have the following rooms for you:-")

print ("1. Luxury suit : ₹ 6000 Per Night\-")

print ("2. Preminum suit : ₹ 5000 Per Night\-")

print ("3. First class AC : ₹ 4000 Per Night\-")

print ("4. Economy class AC : ₹ 3000 Per Night\-")


x=int(input("Enter Your Choice Please->"))

n=int(input("For How Many Nights Did You Stay:"))

print()
print("Your room no.:",self.rno)

if(x==1):

print ("you have opted Luxury suit")

self.s=6000*n

elif (x==2):

print ("you have opted Preminum suit")

self.s=5000*n
elif (x==3):

print ("you have opted First class AC")

self.s=4000*n

elif (x==4):
print ("you have opted Economy class AC")

self.s=3000*n

else:

print ("please choose a room")

print ("your room rent is =",'₹',self.s,"\n")

def themepark(self):
print('>>>>Theme Park Pacakages<<<<')
print('1.Diamond Package : ₹1599 /Person')
print('❖ All water rides\n❖ All dry rides\n❖ Free Unlimited
Food\n❖ Access to 9D shows and Games\n❖ Free Access of Music
concert')
print()
print('2.Platinum Package: ₹1199/Person')
print('❖ All water rides\n❖ All dry rides\n❖ Limited Food\
n❖ Access to 9D shows')
print()
print('3.Golden Package: ₹999 /Person')
print('❖ All water rides\n❖ All dry rides\n❖ Access to 9D
shows')

t=int(input('Enter Your choice please--->'))


tn=int(input('Enter No. of Person--->'))

if (t==1):
print('You Have Opted for Diamond Package')
self.tp=1599*tn

elif (t==2):
print('You Have Opted for Platinum Pakage')
self.tp=1199*tn

elif (t==3):
print('You Have Opted for Golden Pakage ')
self.tp=999*tn
else:
print('Please select a Pakage')
print('You Total Theme Park Bill is=','₹',self.tp,'\n')

def restaurentbill(self):

print("*****RESTAURANT MENU*****")

print("1.Cooldrink----->₹20\n2.tea----->₹20\n3.Arabian
combo--->₹150\n4.Indian Combo---->₹150\n5.Chineese Combo---
>Rs180\n6.European Combo----->₹250\n7.Mixed Combo----->₹350\
n8.Exit")

while (1):

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

if (c==1):
d=int(input("Enter the quantity:"))
self.r=self.r+20*d
elif (c==2):
d=int(input("Enter the quantity:"))
self.r=self.r+20*d

elif (c==3):
d=int(input("Enter the quantity:"))
self.r=self.r+150*d

elif (c==4):
d=int(input("Enter the quantity:"))
self.r=self.r+150*d

elif (c==5):
d=int(input("Enter the quantity:"))
self.r=self.r+180*d

elif (c==6):
d=int(input('Enter the quantity:'))
self.r=self.r+250*d

elif (c==7):
d=int(input('Enter the quantity:'))
self.r=self.r+350*d
elif(c==8):
break

else:
print('Invalid Option')

print ("Total food Cost=",'₹',self.r,"\n")

def laundrybill(self):
print ("******LAUNDRY MENU*******")

print ("1.Shorts: ₹5","2.Trousers: ₹6","3.Shirt: ₹8","4.Jeans:


₹7","5.Girlsuit--->Rs8","6.Exit")

while (1):

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

if (e==1):
f=int(input("Enter the quantity:"))
self.t=self.t+5*f

elif (e==2):
f=int(input("Enter the quantity:"))
self.t=self.t+6*f

elif (e==3):
f=int(input("Enter the quantity:"))
self.t=self.t+8*f

elif (e==4):
f=int(input("Enter the quantity:"))
self.t=self.t+7*f

elif (e==5):
f=int(input("Enter the quantity:"))
self.t=self.t+8*f

elif (e==6):
break

else:

print ("Invalid option")

print ("Total Laundary Cost=",'₹',self.t,"\n")


def gamebill(self):
print ("******GAME MENU*******")

print ("1.Table tennis----->₹ 80","2.Badminton-----> ₹


120","3.Snooker--->₹ 110","4.Video games---->₹ 150","5.Pool---> ₹
200","6.Exit")

while (1):

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

if (g==1):
h=int(input("No. of hours:"))
self.p=self.p+80*h

elif (g==2):
h=int(input("No. of hours:"))
self.p=self.p+120*h

elif (g==3):
h=int(input("No. of hours:"))
self.p=self.p+110*h

elif (g==4):
h=int(input("No. of hours:"))
self.p=self.p+150*h

elif (g==5):
h=int(input("No. of hours:"))
self.p=self.p+200*h
elif (g==6):
break

else:

print ("Invalid option")

print ("Total Game Bill=",'₹',self.p,"\n")

def display(self):
print ("******HOTEL BILL******")
print ("Customer details:")
print ("Customer name:",self.name)
print ("Customer address:",self.address)
print ("Check in date:",self.cindate)
print ("Check out date",self.coutdate)
print ("Room no.",self.rno)
print ("Your Room rent is:",'₹',self.s)
print("Your Theme Park Bill is:",'₹',self.tp)
print ("Your Food bill is:",'₹',self.r)
print ("Your laundary bill is:",'₹',self.t)
print ("Your Game bill is:",'₹',self.p)

self.rt=self.s+self.t+self.p+self.r+self.tp

print ("Your sub total bill is:",'₹',self.rt)


print ("Additional Service Charges is",'₹','Rs.',self.a)
print ("Your grandtotal bill is:",'₹',self.rt+self.a,"\n")

def sendbill(self):
f=open('prshotelbill.txt','w')

msg= f"""\
***** PRS STAR HOTELS *****

Name:{self.name}

Bill No:11524894
checkout date:{self.cindate}
Room Rent:Rs.{self.s}

Theme Park Bill:Rs.{self.tp}


Restaurant Bill:Rs.{self.r}
Laundry Bill:Rs.{self.t}
Game Bill:Rs.{self.p}
additional Charges:Rs.1800

Grand Total Bill:Rs.{self.rt+self.a}

Payment Staus: PAID

***** THANKYOU VISIT AGAIN *****


"""

WRITER=msg
f.write(WRITER)
f.close()

print('Your Total payable amount is','₹',self.rt+self.a)


print('1.Cash\n2.Card\n3.Google Pay(3% CashBack)\
n4.Cheque')
ch=int(input('Enter a Payment option:'))
if ch==1:
print('Thanks sir/mam,Visit Again')
smtp_port = 587
smtp_server = "smtp.gmail.com"

email_from = "[email protected]"
email_list =input('Enter Customer gmail:')

pswd = "loyessckkfkbllul"

self.subject = "Cash Payment"

body= f"""
Hi {self.name},
Successfully paid the amount ₹{self.rt+self.a} to PRS Star
Hotels through cash.
You can refer our hotel and earn money using your
referal code. B982K12 !!!
Code validity is for 3 months.
ThankYou for spending your time with us, Visit Again!

*** Softcopy of the Bill is attached with this mail below


***
"""

msg = MIMEMultipart()
msg['From'] =formataddr(('PRS Hotels limited','email_from'))
msg['To'] = email_list
msg['Subject'] = self.subject

msg.attach(MIMEText(body, 'plain'))

filename = "prshotelbill.txt"

attachment= open(filename,'r')

attachment_package = MIMEBase('application', 'octet-


stream')
attachment_package.set_payload((attachment).read())
encoders.encode_base64(attachment_package)
attachment_package.add_header('Content-Disposition',
"attachment; filename= " + filename)
msg.attach(attachment_package)

text = msg.as_string()

print("Connecting to server...")
server = smtplib.SMTP(smtp_server, smtp_port)
server.starttls()
server.login(email_from, pswd)
print("Succesfully connected to server")
print()

print(f"Sending email to: {email_list}...")


server.sendmail(email_from,email_list, text)
print(f"Email sent to: {email_list}")
print()

server.quit()

elif ch==2:
cn=int(input('Enter your card no:'))
am=self.rt+self.a
bank=input('Enter Bank Name:')
smtp_port = 587
smtp_server = "smtp.gmail.com"

email_from = "[email protected]"
email_list =input('Enter Customer gmail:')

pswd = "loyessckkfkbllul"

self.subject = "Card Payment"

body= f"""
Hi {self.name},
Successfully paid the amount ₹{am} to PRS Star Hotels
from your {bank} card from card no.{cn}
₹{am} credited from your {bank} bank account
ThankYou for spending your time with us, Visit Again!

*** Softcopy of the Bill is attached with his mail below


***
"""

msg = MIMEMultipart()
msg['From'] =formataddr(('PRS Hotels limited','email_from'))
msg['To'] = email_list
msg['Subject'] = self.subject
msg.attach(MIMEText(body, 'plain'))

filename = "prshotelbill.txt"

attachment= open(filename,'r')

attachment_package = MIMEBase('application', 'octet-


stream')
attachment_package.set_payload((attachment).read())
encoders.encode_base64(attachment_package)
attachment_package.add_header('Content-Disposition',
"attachment; filename= " + filename)
msg.attach(attachment_package)

text = msg.as_string()

print("Connecting to server...")
server = smtplib.SMTP(smtp_server, smtp_port)
server.starttls()
server.login(email_from, pswd)
print("Succesfully connected to server")
print()

print(f"Sending email to: {email_list}...")


server.sendmail(email_from,email_list, text)
print(f"Email sent to: {email_list}")
print()

server.quit()

elif ch==4:
gn=input('Enter Cheque Id:')
amx=self.rt+self.a
bank=input('Enter Bank Name:')
y=input('Enter (ok) if Customer signed cheque:')
y=y.lower()
if y=='ok':
print('Amount successfully paid!!!')

smtp_port = 587
smtp_server = "smtp.gmail.com"

email_from = "[email protected]"
email_list =input('Enter Customer gmail:')
pswd = "loyessckkfkbllul"

self.subject = "Cheque Payment"

body= f"""
Hi {self.name},
Successfully paid the amount ₹{amx} to PRS Star Hotels
from Cheque no.{gn}
{bank} accepted your cheque payment!!!
ThankYou for spending your time with us, Visit Again!

*** Softcopy of the Bill is attached with his mail below


***
"""

msg = MIMEMultipart()
msg['From'] =formataddr(('PRS Hotels limited','email_from'))
msg['To'] = email_list
msg['Subject'] = self.subject

msg.attach(MIMEText(body, 'plain'))
filename = "prshotelbill.txt"

attachment= open(filename,'r')

attachment_package = MIMEBase('application', 'octet-


stream')
attachment_package.set_payload((attachment).read())
encoders.encode_base64(attachment_package)
attachment_package.add_header('Content-Disposition',
"attachment; filename= " + filename)
msg.attach(attachment_package)

text = msg.as_string()

print("Connecting to server...")
server = smtplib.SMTP(smtp_server, smtp_port)
server.starttls()
server.login(email_from, pswd)
print("Succesfully connected to server")
print()

print(f"Sending email to: {email_list}...")


server.sendmail(email_from,email_list, text)
print(f"Email sent to: {email_list}")
print()

server.quit()

elif ch==3:
google=int(input('Enter Google Pay Id:'))
amount=self.rt+self.a
print('Amount','₹',amount,'succesfully Transferd to PRS
Hotels Hotel')
dis=int((amount/100)*3)
print('Cashback ₹',dis,'to the coustomer!!!')

smtp_port = 587
smtp_server = "smtp.gmail.com"

email_from = "[email protected]"
email_list =input('Enter Customer gmail:')

pswd = "loyessckkfkbllul"

self.subject = "Google Pay"

body= f"""
Hi {self.name},
Successfully paid the amount ₹{amount} to PRS Star
Hotels from your GooglePay no.{google}
₹{dis} credited to your Google Pay account as a
discount!!!
ThankYou for spending your time with us, Visit Again!

*** Softcopy of the Bill is attached with his mail below


***
"""

msg = MIMEMultipart()
msg['From'] =formataddr(('PRS Hotels limited','email_from'))
msg['To'] = email_list
msg['Subject'] = self.subject

msg.attach(MIMEText(body, 'plain'))

filename = "prshotelbill.txt"

attachment= open(filename,'r')
attachment_package = MIMEBase('application', 'octet-
stream')
attachment_package.set_payload((attachment).read())
encoders.encode_base64(attachment_package)
attachment_package.add_header('Content-Disposition',
"attachment; filename= " + filename)
msg.attach(attachment_package)

text = msg.as_string()

print("Connecting to server...")
server = smtplib.SMTP(smtp_server, smtp_port)
server.starttls()
server.login(email_from, pswd)
print("Succesfully connected to server")
print()

print(f"Sending email to: {email_list}...")


server.sendmail(email_from,email_list, text)
print(f"Email sent to: {email_list}")
print()

server.quit()
def main():

a=hotelfarecal()

while (1):
print()

print("1.Enter Customer Data")

print('2.Theme Park Pakage')

print("3.Calculate restaurant bill")

print("4.Calculate laundry bill")

print("5.Calculate game bill")

print("6.Display Total Bill ")


print('7.Checkout & Payment')

print("8.EXIT")

b=int(input("\nEnter your choice:"))


if (b==1):
a.inputdata()

if (b==2):
a.themepark()

if (b==3):

a.restaurentbill()

if (b==4):

a.laundrybill()

if (b==5):

a.gamebill()
if (b==6):

a.display()

if (b==7):

a.sendbill()

if (b==8):
quit()
print('Visit again')

main()

OUTPUT

*****WELCOME TO PRS Star Hotels*****


1.Enter Customer Data
2.Theme Park Pakage
3.Calculate restaurant bill
4.Calculate laundry bill
5.Calculate game bill
6.Display Total Bill
7.Checkout & Payment
8.EXIT

Enter your choice:1

Enter your name:ARJUN KAPOOR

Enter your address:NEW DELHI

Enter your checkout date(YYYY-MM-DD):2023-11-21


We have the following rooms for you:-
1. Luxury suit : ₹ 6000 Per Night\-
2. Preminum suit : ₹ 5000 Per Night\-
3. First class AC : ₹ 4000 Per Night\-
4. Economy class AC : ₹ 3000 Per Night\-
Enter Your Choice Please->2
For How Many Nights Did You Stay:5
Your room no.: 224
you have opted Preminum suit
your room rent is = ₹ 25000

1.Enter Customer Data


2.Theme Park Pakage
3.Calculate restaurant bill
4.Calculate laundry bill
5.Calculate game bill
6.Display Total Bill
7.Checkout & Payment
8.EXIT

Enter your choice:2


>>>>Theme Park Pacakages<<<<
1.Diamond Package : ₹1599 /Person
❖ All water rides
❖ All dry rides
❖ Free Unlimited Food
❖ Access to 9D shows and Games
❖ Free Access of Music concert
2.Platinum Package: ₹1199/Person
❖ All water rides
❖ All dry rides
❖ Limited Food
❖ Access to 9D shows

3.Golden Package: ₹999 /Person


❖ All water rides
❖ All dry rides
❖ Access to 9D shows
Enter Your choice please--->1
Enter No. of Person--->1
You Have Opted for Diamond Package
You Total Theme Park Bill is= ₹ 1599

1.Enter Customer Data


2.Theme Park Pakage
3.Calculate restaurant bill
4.Calculate laundry bill
5.Calculate game bill
6.Display Total Bill
7.Checkout & Payment
8.EXIT

Enter your choice:3


*****RESTAURANT MENU*****
1.Cooldrink----->₹20
2.tea----->₹20
3.Arabian combo--->₹150
4.Indian Combo---->₹150
5.Chineese Combo--->Rs180
6.European Combo----->₹250
7.Mixed Combo----->₹350
8.Exit
Enter your choice:4
Enter the quantity:3
Enter your choice:8
Total food Cost= ₹ 450

1.Enter Customer Data


2.Theme Park Pakage
3.Calculate restaurant bill
4.Calculate laundry bill
5.Calculate game bill
6.Display Total Bill
7.Checkout & Payment
8.EXIT

Enter your choice:4


******LAUNDRY MENU*******
1.Shorts: ₹5 2.Trousers: ₹6 3.Shirt: ₹8 4.Jeans: ₹7 5.Girlsuit--->Rs8
6.Exit
Enter your choice:3
Enter the quantity:2
Enter your choice:6
Total Laundary Cost= ₹ 16

1.Enter Customer Data


2.Theme Park Pakage
3.Calculate restaurant bill
4.Calculate laundry bill
5.Calculate game bill
6.Display Total Bill
7.Checkout & Payment
8.EXIT

Enter your choice:5


******GAME MENU*******
1.Table tennis----->₹ 80 2.Badminton----->₹ 120 3.Snooker---> ₹ 110
4.Video games---->₹ 150 5.Pool--->₹ 200 6.Exit
Enter your choice:3
No. of hours:2
Enter your choice:6
Total Game Bill= ₹ 220

1.Enter Customer Data


2.Theme Park Pakage
3.Calculate restaurant bill
4.Calculate laundry bill
5.Calculate game bill
6.Display Total Bill
7.Checkout & Payment
8.EXIT

Enter your choice:6


******HOTEL BILL******
Customer details:
Customer name: ARJUN KAPOOR
Customer address: NEW DELHI
Check in date: 2023-12-05
Check out date 2023-11-21
Room no. 224
Your Room rent is: ₹ 25000
Your Theme Park Bill is: ₹ 1599
Your Food bill is: ₹ 450
Your laundary bill is: ₹ 16
Your Game bill is: ₹ 220
Your sub total bill is: ₹ 27285
Additional Service Charges is ₹ Rs. 1800
Your grandtotal bill is: ₹ 29085

1.Enter Customer Data


2.Theme Park Pakage
3.Calculate restaurant bill
4.Calculate laundry bill
5.Calculate game bill
6.Display Total Bill
7.Checkout & Payment
8.EXIT

Enter your choice:7


Your Total payable amount is ₹ 29085
1.Cash
2.Card
3.Google Pay(3% CashBack)
4.Cheque
Enter a Payment option:3
Enter Google Pay Id:1234
Amount ₹ 29085 succesfully Transferd to PRS Hotels Hotel
Cashback ₹ 872 to the coustomer!!!
Enter Customer gmail:[email protected]
Connecting to server...
Succesfully connected to server

Sending email to: [email protected]...


Email sent to: [email protected]

1.Enter Customer Data


2.Theme Park Pakage
3.Calculate restaurant bill
4.Calculate laundry bill
5.Calculate game bill
6.Display Total Bill
7.Checkout & Payment
8.EXIT
Enter your choice:8

OUTPUT ON USER’S SCREEN


SOFT COPY OF BILL
BIBLIOGRAPHY
>teluskonaveen@youtube
>chatgpt openai
>wikipedia

You might also like