I have made a program that asks a series of questions and requires you to answer them.. once you answer them, it takes your input goes thru a few if statements and prints your answer.. at the end i want to make a option to run the program again.. it should look like
if (answer == 'y' || answer == 'Y')
{
...
...
...
}
if the answer is y or Y how can i tell it to recall the program.
Thank you!
if (answer == 'y' || answer == 'Y')
{
...
...
...
}
if the answer is y or Y how can i tell it to recall the program.
Thank you!