-1

I'm currently doing a program, and I have arrived to a small problem. I want to ask the user whether or not he would like to try again the application after he has completed it once. If he says yes, I'd like to go back to the top of the program at a specific line. Is it possible? thank you.

R.DM
  • 105
  • 1
  • 11

1 Answers1

1
DO{
    // INSTRUCTIONS
    // ASK THE USER IF HÉ WANTS TO CONTINUE.
    // IF NOT, USE A BREAK TO SHUT OFF THE PROGRAM
} WHILE (TRUE);
Yassin Hajaj
  • 21,337
  • 9
  • 51
  • 89