Topical Information Use C++. This lab will help you practice with operator overloading (NOT mixed with classes). Program Information Write a program that allows the user to enter the values to assign a card's suit (commonly implemented as an enumeration — Hearts, Clubs, Diamonds, Spades) from the keyboard. You cannot use a menu. Your program must read the user's choice directly into the card suit variable (of an enum type). (Note: You cannot overload operators for built-in types, but enumerations are, technically, user-defined types. Therefore you can overload input/output operators for them.) This proof of concept application will help show your programming team that the bridge game you are designing can accept bids directly from the player without having to rely on a clumsy menu interface. An example program interaction might look something like (the parts underlined are typed by the user): $ ./suitenter.out           Welcome to the Card Suit Entering Program!!! What is the suit of your card? hearts You have a heart! Don't wear it on your sleeve..! Another card? Y What is the suit of your card? s So, you have a spade! Dig me a hole out back, won't you? Another card? Y What is the suit of your card? CLUBS Ah, a club! Don't beat me up!! Another card? Y What is the suit of your card? diagonal I'm sorry, I don't recognize that suit...please try again. What is the suit of your card? dia Ooo...diamonds. Don't cut my monitor with those! Another card? n Thank you for using the CSEP!! Endeavor to have a stimulating day! $

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Topical Information

Use C++. This lab will help you practice with operator overloading (NOT mixed with classes).

Program Information

Write a program that allows the user to enter the values to assign a card's suit (commonly implemented as an enumeration — Hearts, Clubs, Diamonds, Spades) from the keyboard. You cannot use a menu. Your program must read the user's choice directly into the card suit variable (of an enum type). (Note: You cannot overload operators for built-in types, but enumerations are, technically, user-defined types. Therefore you can overload input/output operators for them.)

This proof of concept application will help show your programming team that the bridge game you are designing can accept bids directly from the player without having to rely on a clumsy menu interface.

An example program interaction might look something like (the parts underlined are typed by the user):

$ ./suitenter.out

          Welcome to the Card Suit Entering Program!!!

What is the suit of your card? hearts

You have a heart! Don't wear it on your sleeve..!

Another card? Y

What is the suit of your card? s

So, you have a spade! Dig me a hole out back, won't you?

Another card? Y

What is the suit of your card? CLUBS

Ah, a club! Don't beat me up!!

Another card? Y

What is the suit of your card? diagonal

I'm sorry, I don't recognize that suit...please try again.

What is the suit of your card? dia

Ooo...diamonds. Don't cut my monitor with those!

Another card? n

Thank you for using the CSEP!!

Endeavor to have a stimulating day!

$

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Declaring and Defining the Function
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
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education