if else / goto substitution

Hello,
I am attempting at writing a leisurely program to help me with if / else
what i am doing is prompting the user to type " Continue "/ or "continue" to continue onto the next screen, and if they are not restating the prompt again. from all the forums ive read it says not to use "goto". Can someone help me with a better way to do it and explain why?

I would greatly appreciate it and im sorry for the noobness
1
2
3
4
5
6
7
8
9
10
11
12
13

char Cont [50];
cout<<" Type ' Continue ' to continue"<<"\n";
cin>>Cont;
if (!strcmp("Continue", Cont))
             {
                   system ("CLS");
             }
if (!strcmp("continue", Cont))
             {
                   system ("CLS");
             }
else // this is where im confused 


Topic archived. No new replies allowed.