1
0
Fork 0
SDEV-240-81/week-04/Week4_Color-1.cpp

30 lines
800 B
C++

// Lab 4 color.cpp
// This program lets the user select a primary color from a menu.
// Llewellyn van der Merwe
#include <iostream>
#include <string>
using namespace std;
int main()
{
int choice; // Menu choice should be 1, 2, or 3
// Display the menu of choices
cout << "Choose a primary color by entering its number. \n\n";
cout << "1 Red \n" << "2 Blue \n" << "3 Yellow \n";
// Get the user's choice
cin >> choice;
// Tell the user what he or she picked
if (choice == 1)
cout << "\nYou picked red.\n";
else if (choice == 2)
cout << "\nYou picked blue.\n";
else if (choice == 3)
cout << "\nYou picked yellow.\n";
else
cout << "\nError, you must choose be between 1 and 3\n";
return 0;
}