Project 12


The Projects

Your instructor may assign you one of the problems below. To solve your problem, write a program that reads the necessary information to compute and output the indicated values, as efficiently as possible.

Project #12.1: Extend the class Fraction by overloading the remaining arithmetic operators (+, -, and /), the six relational operators (==, !=, <, >, <=, and >=). Then construct a menu-driven 10-function calculator (the 4 arithmetic operations and the 6 relational operations) that an elementary student can use to check his or her fraction homework assignments.

Project #12.2: Create a "drill" program for the Fraction class. This program should generate random fractions (using class RandomInt from C++ for Engineering and Science) that are displayed and then asks for the user to type in their product. The program checks the answer and tells the user if they were right or wrong. This would be great for grade-school kids learning fractions for the first time. Keep track of the total number of problems the user gets right and gets wrong; report this number when the program finishes.

Project #12.3: A quadratic equation has the form
ax2 + bx + c = 0
where a, b, and c are all real values. Write a class Quadratic that can be used to model a quadratic equation, with operations to construct with default values, construct with explicit values, input, output, extract the data members of, evaluate (for a given value of x), find the roots of, and find the x value at which the value of the Quadratic is minimized (or maximized).

To test your class, write a menu-driven program that allows a user to enter a quadratic, and repeatedly process it using any of the provided operations.

Project #12.4: A phone number consists of four separate pieces of information: an area code, an exchange, a local number, and a long-distance indicator (true or false). Design and build a PhoneNumber class that models a phone number, providing operations to construct, input, output, extract each of the data members of a PhoneNumber object, and indicate whether or not the number is long-distance. The input operation should read a local or long-distance number and set the long-distance indicator accordingly. The output operation should display a local number differently from the way it displays a long-distance number (e.g., 555-1234 vs. (616) 555-1234).

To test your class, write a program that simulates an intelligent computer modem dialer by reading a PhoneNumber, and displaying the number to be dialed. If the number is a long distance number, it should be preceded by 1-; otherwise it should be displayed as a local number.

Project #12.5: A playing card has two attributes, its rank (e.g., 2, 3, 4, 5, 6, 7, 8, 9, 10, J, Q, K, A) and its suit (e.g., clubs, diamonds, hearts, spades). Design and build a PlayingCard class that models a playing card. Your class should provide operations to construct, input, output, compare, and extract the data members of a PlayingCard object.

A deck of cards is simply a sequence of cards. Design and create a class DeckOfCards that represents such objects by using a vector to store a sequence of PlayingCard values. Your DeckOfCards class should provide operations to construct, shuffle, and take the top card. The class constructor should initialize the DeckOfCards as a new deck of 52 cards (i.e., 2-clubs, 3-clubs, ..., A-clubs, 2-diamonds, ..., A-diamonds, 2-hearts, ..., A-hearts, 2-spades, ..., A-spades). The shuffle operation should rearrange the cards in a deck in random order. Another operation should getthe top card from the deck.

To test your classes, write a program that plays a simple card game (i.e., blackjack, go fish, etc.) against a human opponent. If your game involves a discard pile, you might create another class DiscardPile to model it.


Back to the Lab Exercise

Back to This Lab's Home Page


Report errors to Larry Nyhoff (nyhl@cs.calvin.edu)