ERROR CATCH Problem

The below program has to be modified to throw up an Error msg FOR EXAMPLE "Sorry you have inputed an incorrect choice",I wrote this a few weeks back and now need to add this modification, having trouble actually getting it to work though,i have a few examples of the TRY & CATCH code but the one im trying donesnt seem to throw up the Error msg??

Any help would be great :)

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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
#include <iostream>

using namespace std;

void roomstart(float start);
void roomexit (float exit);
void roomnorth(float north);
void roomeast (float east);
void roomsouth (float south);
void roomwest (float west);

int main()
{
  try
{
   float function;
   int choice;
//----------------------------MAIN START----------------------------------------------

    cout << "Hello and welcome to Lee's' amazing room game \n\n";
    cout <<"There are 6 rooms\n";
    cout<<"START"<<"\n"<<"NORTH"<<"\n"<<"SOUTH"
    <<"\n"<<"EAST"<<"\n"<<"WEST"<<"\n"<<"EXIT"<<"\n";
    cout << "Which door do you wish to enter?\n";
    cout << "press 1:START,2:NORTH,3:EAST,4:SOUTH,5:WEST,6:EXIT\n";
    cin >> choice;

if (choice == 1)
    {
        roomstart(function);
    }
else if (choice == 2)
   {
      roomnorth(function);
   }
else if (choice == 3)
  {
     roomeast(function);
  }
else if (choice == 4)
{
    roomsouth(function);
}
else if (choice ==5)
{
    roomwest(function);
}
else if (choice ==6)
{
    roomexit(function);
}
}
catch(...)
{
    cout<<"Sorry this is not a correct input answer!\n";
}

cin.get();
cin.get();
return 0;
//---------------------------------rooms-------------------------
}

void roomstart(float function)
{
//START room
 cout<<"-------------START ROOM-------------\n";
 int choice;
//----------------------------START ROOM START----------------------------------------------
  cout <<"There are 5 rooms\n";
  cout<<"NORTH"<<"\n"<<"SOUTH"
  <<"\n"<<"EAST"<<"\n"<<"WEST"<<"\n"<<"EXIT"<<"\n";
  cout << "Which door do you wish to enter?\n";
  cout << "press 2:NORTH,3:EAST,4:SOUTH,5:WEST,6:EXIT\n";
  cin >> choice;

 if (choice == 2)
 {
    roomnorth(function);
 }
else if (choice == 3)
{
   roomeast(function);
}
else if (choice == 4)
{
  roomsouth(function);
}
else if (choice ==5)
{
  roomwest(function);
}
else if (choice ==6)
{
  roomexit(function);
}
}
void roomnorth(float function)
{
//NORTH room
 cout<<"-------------NORTH ROOM-------------\n";
 int choice;
//----------------------------NORTH ROOM START----------------------------------------------
  cout <<"There are 5 rooms\n";
  cout<<"START"<<"\n"<<"SOUTH"
  <<"\n"<<"EAST"<<"\n"<<"WEST"<<"\n"<<"EXIT"<<"\n";
  cout << "Which door do you wish to enter?\n";
  cout << "press 1:START,3:EAST,4:SOUTH,5:WEST,6:EXIT\n";
  cin >> choice;

if (choice == 1)
  {
      roomstart(function);
  }

else if (choice == 3)
{
   roomeast(function);
}
else if (choice == 4)
{
  roomsouth(function);
}
else if (choice ==5)
{
  roomwest(function);
}
else if (choice ==6)
{
  roomexit(function);
}
}
void roomeast(float function)
{
//EAST room
 cout<<"-------------EAST ROOM-------------\n";
 int choice;
//----------------------------EAST ROOM START----------------------------------------------
  cout <<"There are 5 rooms\n";
  cout<<"NORTH"<<"\n"<<"SOUTH"
  <<"\n"<<"WEST"<<"\n"<<"EXIT"<<"\n";
  cout << "Which door do you wish to enter?\n";
  cout << "press 1:START,2:NORTH,4:SOUTH,5:WEST,6:EXIT\n";
  cin >> choice;

if (choice == 1)
  {
      roomstart(function);
  }
else if (choice == 2)
 {
    roomnorth(function);
 }

else if (choice == 4)
{
  roomsouth(function);
}
else if (choice ==5)
{
  roomwest(function);
}
else if (choice ==6)
{
  roomexit(function);
}
}
void roomsouth(float function)
{
//SOUTH room
 cout<<"-------------SOUTH ROOM-------------\n";
 int choice;
//----------------------------SOUTH ROOM START----------------------------------------------
  cout <<"There are 5 rooms\n";
  cout<<"NORTH"<<
  "\n"<<"EAST"<<"\n"<<"WEST"<<"\n"<<"EXIT"<<"\n";
  cout << "Which door do you wish to enter?\n";
  cout << "press 1:START,2:NORTH,3:EAST,4:,5:WEST,6:EXIT\n";
  cin >> choice;

if (choice == 1)
  {
      roomstart(function);
  }
else if (choice == 2)
 {
    roomnorth(function);
 }
else if (choice == 3)
{
   roomeast(function);
}

else if (choice ==5)
{
  roomwest(function);
}
else if (choice ==6)
{
  roomexit(function);
}
}
void roomwest(float function)
{
//WEST room
 cout<<"-------------WEST ROOM-------------\n";
 int choice;
//----------------------------WEST ROOM START----------------------------------------------
  cout <<"There are 5 rooms\n";
  cout<<"NORTH"<<"\n"<<"SOUTH"
  <<"\n"<<"EAST"<<"\n"<<"EXIT"<<"\n";
  cout << "Which door do you wish to enter?\n";
  cout << "press 1:START,2:NORTH,3:EAST,4:SOUTH,6:EXIT\n";
  cin >> choice;

if (choice == 1)
  {
      roomstart(function);
  }
else if (choice == 2)
 {
    roomnorth(function);
 }
else if (choice == 3)
{
   roomeast(function);
}
else if (choice == 4)
{
  roomsouth(function);
}

else if (choice ==6)
{
  roomexit(function);
}
}
void roomexit(float function)
{
//EXIT room
 cout<<"-------------EXIT ROOM-------------\n";
  int choice;
//----------------------------EXIT ROOM START----------------------------------------------
  cout <<"There are 5 rooms\n";
  cout<<"NORTH"<<"\n"<<"SOUTH"
  <<"\n"<<"EAST"<<"\n"<<"WEST"<<"\n";
  cout << "Which door do you wish to enter?\n";
  cout << "press 1:START,2:NORTH,3:EAST,4:SOUTH,5:WEST\n";
  cin >> choice;

if (choice == 1)
  {
      roomstart(function);
  }
else if (choice == 2)
 {
    roomnorth(function);
 }
else if (choice == 3)
{
   roomeast(function);
}
else if (choice == 4)
{
  roomsouth(function);
}
else if (choice ==5)
{
  roomwest(function);
}
}
It doesn't work because you didn't throw an exception:
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
  try
{
   float function;
   int choice;
//----------------------------MAIN START----------------------------------------------

    cout << "Hello and welcome to Lee's' amazing room game \n\n";
    cout <<"There are 6 rooms\n";
    cout<<"START"<<"\n"<<"NORTH"<<"\n"<<"SOUTH"
    <<"\n"<<"EAST"<<"\n"<<"WEST"<<"\n"<<"EXIT"<<"\n";
    cout << "Which door do you wish to enter?\n";
    cout << "press 1:START,2:NORTH,3:EAST,4:SOUTH,5:WEST,6:EXIT\n";
    cin >> choice;

if (choice == 1)
    {
        roomstart(function);
    }
else if (choice == 2)
   {
      roomnorth(function);
   }
else if (choice == 3)
  {
     roomeast(function);
  }
else if (choice == 4)
{
    roomsouth(function);
}
else if (choice ==5)
{
    roomwest(function);
}
else if (choice ==6)
{
    roomexit(function);
}
else throw choice; // invalid choice, throw an exception

}
catch(...)
{
    cout<<"Sorry this is not a correct input answer!\n";
}



http://www.cplusplus.com/doc/tutorial/exceptions/
Last edited on
Hey thanks for the reply,ahh right i was wondering why couldnt i just use another 'else if' but i couldnt find any examples at the time,thanks very much for the help :) and the link
Topic archived. No new replies allowed.