Can you help me with my C++ programming? !!!PLEASE!!!

Write your question here.

This is all I have, I really need help.

/if conditionals
#include <iostream>
#include <ctime>
#include <cstdlib>
using namespace std;

int main()
{



// Welcome to the Time Machine
cout << "Welcome to the Time Machine" << endl;
cout << "Select an option to to get started" << endl;
cout << "1. Enter a specific Date" << endl;
if (
cout << "2. Select a Time Period" << endl;
cout << "3.. Wildcard - I'm Feeling Lucky" << endl;



return 0;
}


This is my assignment:

1. Enter a Specific Date
2. Select a Time Period
3. Wildcard - I'm Feeling Lucky

After the user makes a selection, use ONE if/else if selection structure to display different options based on their input.

For choice number 1 you must get the month, day and year and display their selection back on the screen. (So that means you will need variables for month, day and year).

1. Enter a Specific Date
What is the month? (enter 1-12)
What is the day? (enter 1-31)
What is the year?
Ok, we will send you to month/day/year

For choice number 2, you can be creative with the time periods. But it should display back their choice. So you will need a variable for the time period.

2. Select a Time Period
Choose from one of these time periods.
1. Prehistoric Dinosaur Era
2. 500 BC
3. Renaissance
4. American Civil War
Ok, we will send you to choice number __

For choice number 3, you can make up a simple response.

3. Wildcard - I'm Feeling Lucky
Ok, I'll choose where to send you.

Also setup your if/else structure so that if the user doesn't pick 1 or 2 or 3 to display a message that the choice was not valid.

Finally, end the program with a message that says the time machine program is ending. Please help me. I would appreciate it. Thanks
Topic archived. No new replies allowed.