Stuck..need help please with while loop

I'm having a problem with the while loop. I'm trying to create a combination that will exit the program when entered. These are the specific instruction:
Then the main program will skip a few lines and go back to step 1 (which is entering integers again).
At step 1, if the user types in a special combination, the program will go to step 5.
You must determine what this combination is, and you must explain it--in a prompt or in a comment, and in the introduction at the beginning--to the person using the program.

The compiler is also showing me an error on line 51 saying function definition is not allowed before '(' token?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
  #include <iostream>

using namespace std;

void introduction();

void printmyname(int sum);

int findsum (int,int,int);

int howmanyeven(int,int,int);

int main()


{
    int x, y, z, printsum,even;

introduction();
cout<<endl;

while(x!=9, y!=9, z!=9)
{




cout <<"Please enter 3 integers, positive, negative, or zero."<<endl;
cin>>x>>y>>z;
cout<<"The original integers are "<<x<<", "<<y<<", "<<z<<", "<<endl;



printsum=findsum(x,y,z);


cout<<"The sum is "<<printsum<<endl;

printmyname(printsum);

cout<<endl;

even=howmanyeven(x,y,z);
cout<<"There is/are "<<even<<"even numbers";

}



void introduction()
{
    cout<<"The program will";
}


int findsum(int a,int b,int c)
{
    int sum;


    if ( a < b )
    {
        int temp = a; a = b; b = temp;
    }



    if ( b < c )
    {
        int temp = b; b = c; c = temp;
     }

    sum =( a + b );

    return sum;

}


void printmyname(int sum){

    if(sum>10 || sum<=0)
    {
        cout<<"it is not possible to print the name in this case";
    }
    else
    {







    int x;
    for(x=1; x<=sum; x++)
    cout<<"Bob"<<endl;
    }

}



int howmanyeven(int e, int f, int g){

int evennum=0;

if(e%2==0)
evennum++;

if(f%2==0)
    evennum++;

if(g%2==0)
    evennum++;

    return evennum;

}

}




Hey, make sure to initialize those variables x, y, z, printsum and even in line 17. If you do not assign them a value they might cause issues within the while loop. You also forgot a closing bracket (}) in line 47, after you terminate the while-loop. Make sure you actually define the functions outside the main function!
Topic archived. No new replies allowed.