4.11 Program: Veterinarian Billing This program requires you to create a simple program that will generate invoices for veterinary services. The requirements are: (1) Output a menu of veterinary services and the coresponding cost of each senvice. (2 pts) Ex: Cool Paws Vet Exam: $45 Vaccinations: $32 Trim Nails: $8 Bath: $15 (2) Prompt the user for two services from the menu. (2 pts) Ex Select first service: Exam Select second service: Irim Nails (3) Output an invoice for the services selected. Output the cost for each service and the total cost. (3 pts) Cool Paws Vet Invoice Service 1 - Exam: $45 Service 2 - Trim Nails: $8 Total: $53 (4) Extend the program to allow the user to enter a dash (-), which indicates no second service. (3 pts) Ex: Cool Paws Vet Exam: $45 Vaccinations: $32 Trim Nails: $8 Bath: $15 Select first service: Bath Select second service: Cool Paws Vet Invoice Service 1 - Bath: $15 Service 2 - None Total: $15 LAB 4.11.1: Program Veterinarian Billing 0/10 ACTIVITY LAB 4.11.1: Program: Veterinarian Billing 0/10 ACTIVITY main.py Load default template... 2 ## Type your code here 3 ## 4 import math 6 ##Dictionary of veterinary services and cost per pound 8 coolPawsVet = { 'Exam': 45, 'Vaccinations': 32, 'Trim Nails': 8, 10 11 'Bath': 15 12 13 } 14 15 serviceOne = ('Select first service \n') 16 serviceTwo = ('Select second service : \n') 17 18 print('Cool Paws Vet Invoice') 19 print('Service 1' + 'serviceOne') 20 print('Service 2' + 'serviceTwo') 21 total=('serviceOne' + 'serviceTwo') 22 print(total)

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter3: Input/output
Section: Chapter Questions
Problem 12SA: 12. What is the output of the following program? (2, 3, 6, 8) #include <iostream> #include...
icon
Related questions
Question

Why is the code I wrote wrong? Could someone explain why? I do not understand why.

4.11 Program: Veterinarian Billing
This program requires you to create a simple program that will generate invoices for veterinary services. The requirements are:
(1) Output a menu of veterinary services and the coresponding cost of each senvice. (2 pts)
Ex:
Cool Paws Vet
Exam: $45
Vaccinations: $32
Trim Nails: $8
Bath: $15
(2) Prompt the user for two services from the menu. (2 pts)
Ex
Select first service:
Exam
Select second service:
Irim Nails
(3) Output an invoice for the services selected. Output the cost for each service and the total cost. (3 pts)
Cool Paws Vet Invoice
Service 1 - Exam: $45
Service 2 - Trim Nails: $8
Total: $53
(4) Extend the program to allow the user to enter a dash (-), which indicates no second service. (3 pts)
Ex:
Cool Paws Vet
Exam: $45
Vaccinations: $32
Trim Nails: $8
Bath: $15
Select first service:
Bath
Select second service:
Cool Paws Vet Invoice
Service 1 - Bath: $15
Service 2 - None
Total: $15
LAB
4.11.1: Program Veterinarian Billing
0/10
ACTIVITY
Transcribed Image Text:4.11 Program: Veterinarian Billing This program requires you to create a simple program that will generate invoices for veterinary services. The requirements are: (1) Output a menu of veterinary services and the coresponding cost of each senvice. (2 pts) Ex: Cool Paws Vet Exam: $45 Vaccinations: $32 Trim Nails: $8 Bath: $15 (2) Prompt the user for two services from the menu. (2 pts) Ex Select first service: Exam Select second service: Irim Nails (3) Output an invoice for the services selected. Output the cost for each service and the total cost. (3 pts) Cool Paws Vet Invoice Service 1 - Exam: $45 Service 2 - Trim Nails: $8 Total: $53 (4) Extend the program to allow the user to enter a dash (-), which indicates no second service. (3 pts) Ex: Cool Paws Vet Exam: $45 Vaccinations: $32 Trim Nails: $8 Bath: $15 Select first service: Bath Select second service: Cool Paws Vet Invoice Service 1 - Bath: $15 Service 2 - None Total: $15 LAB 4.11.1: Program Veterinarian Billing 0/10 ACTIVITY
LAB
4.11.1: Program: Veterinarian Billing
0/10
ACTIVITY
main.py
Load default template...
2 ## Type your code here
3 ##
4 import math
6 ##Dictionary of veterinary services and cost per pound
8 coolPawsVet = {
'Exam': 45,
'Vaccinations': 32,
'Trim Nails': 8,
10
11
'Bath': 15
12
13 }
14
15 serviceOne = ('Select first service \n')
16 serviceTwo = ('Select second service : \n')
17
18 print('Cool Paws Vet Invoice')
19 print('Service 1' + 'serviceOne')
20 print('Service 2' + 'serviceTwo')
21 total=('serviceOne' + 'serviceTwo')
22 print(total)
Transcribed Image Text:LAB 4.11.1: Program: Veterinarian Billing 0/10 ACTIVITY main.py Load default template... 2 ## Type your code here 3 ## 4 import math 6 ##Dictionary of veterinary services and cost per pound 8 coolPawsVet = { 'Exam': 45, 'Vaccinations': 32, 'Trim Nails': 8, 10 11 'Bath': 15 12 13 } 14 15 serviceOne = ('Select first service \n') 16 serviceTwo = ('Select second service : \n') 17 18 print('Cool Paws Vet Invoice') 19 print('Service 1' + 'serviceOne') 20 print('Service 2' + 'serviceTwo') 21 total=('serviceOne' + 'serviceTwo') 22 print(total)
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 3 images

Blurred answer
Knowledge Booster
Storage Devices
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning