runtime error,debugger stops at "int y" line 147, i need a hint

nvm i got it

The program runs ok if i put valid inputs, but when i input 123 for binary this will happen:



Input binary #: 123

This application has requested the Runtime to terminate it in an unusual way.
Please contact the application's support team for more information.



the debugger is ok until at "int y" at line 147, thats when the console will exit
i used bloodshed dev c++ and windows 7...
can someone give me a hint what went wrong?

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
#include <iostream>
#include <iomanip>
#include <sstream>
#include <bitset>

using namespace std;

// converts dec to bin and prints it in reverse        
int dectobin(int x)
{

    cout<<"The binary equivalent is:";
    stringstream buff;
      do
      {
      buff<<x%2;
      x=x/2; 
      }while (x>=2);
      if(x>0)
      {
      buff<<'1';
      }
      string cool=buff.str();
      buff.str("");
      buff.clear();
      int i=cool.length();
      for (i;i>=0;i--)
      {
      cout <<cool[i];
      } 
      cout<<endl;
      return 0;
}

//input validation function
int validate(char check)
{
string number;
int ok;
           
switch(check)
{

         //case c if hex input
         case 'C': case 'c':
         {
         do
         {
         ok =1;
         cin >>setw(1000)>> number;

         for (int i=0;i<number.length();i++)
         {
         if (isxdigit(number[i]))
         continue;
         
         else
         {
         cerr<<"Invalid input, try again\n";
         ok=0; 
         break;
         }    
         }
         }while (ok==0);
         
         //returns hex value in dec
         stringstream x;
         x<<hex<<number;
         int y;
         x>>y;
         x.str("");
         x.clear();
         return y;
         break;
         }
         
         //dec oct bin base type input
         default:

         do
         {
         ok =1;
         cin >>setw(1000)>> number;

         for (int i=0;i<number.length();i++)
         {
         
         //a for dec, numbers only    
         if (isdigit(number[i]))
         {
         if (check =='a' || check=='A')
         {
         continue;
         }
         
         //converts number[i] to int
         stringstream buffer;
         buffer<<number[i];
         int compare;
         buffer>>compare;
         buffer.str("");
         buffer.clear();
         
         //b for oct, <8 only
         if (compare<8)
         {
         if (check =='b' || check=='B')
         {
         continue;
         }
         }
         
         //d for bin, <2 only
         if (compare<2)
         {
         if (check =='d' || check=='D')
         {
         continue;
         }
         }
         }
         
         else
         {
         ok =0;
         cerr<<"Invalid input, try again\n";
         break;
         }
         }
        }while (ok==0);     
}

// converts number and returns it
stringstream x;
if(check=='a'||check=='A')
{
x<<number;
}
else if(check=='b'||check=='B')
{
x<<oct<<number;
}
else if(check=='d'||check=='D')
{
x<<bitset<32>(number).to_ulong();
}
int y;
x>>y;
x.str("");
x.clear();
return y;
}              

//conversion function
int convert(int x)
{
    cout<<"Convert to:\nA: for decimal\nB: for octal\nC: for hexadecimal\nD: for binary\n";
    char select;
    cin>>setw(2)>>select;
    stringstream buff;
    buff<<dec<<x;
    int z;
    buff>>z;
    buff.str("");
    buff.clear();
    
    
    switch(select)
{
    case 'a':
         case 'A':
         cout<<"The decimal equivalent is: "<<dec<<z<<endl;
         break;
    case 'b':
         case 'B':
         cout<<"The octal equivalent is: "<<oct<<z<<endl;
         break;
    case 'c':
         case 'C':
         cout<<"The hexadecimal equivalent is: "<<hex<<z<<endl;
         break;
    case ('d'):
         case ('D'):
         dectobin(z);
         break;
    default:
         cout<<"Invalid input\n";
         break;
}
         return 0;
}


int main()
{
char again='y'; 

do
{    
cout<<"Choose input type:\nA: for decimal\nB: for octal\nC: for hexadecimal\nD: for binary\n";
char select;
cin>>setw(2)>>select;

switch(select)
{
    case 'a':
         case 'A':
              
    cout<<"Input decimal #: \n";
    convert(validate(select));
    break;
    
    case 'b':
         case 'B':
    cout<<"Input octal #: 0";
    convert(validate(select));
    break;
    
    case 'c':
         case 'C':
    cout<<"Input hexadecimal #: 0x";
    convert(validate(select));
    break;
    
    case 'd':
         case 'D':
    cout<<"Input binary #: ";
    convert(validate(select));
    break;
         
    default:
         cerr<<"Invalid input\n";
         system("pause");
         break;

}
cout<<"Enter Y to try again:";
cin>>again;
system("cls"); 
}while ((again=='y')||(again=='Y'));

system("pause");
return 0;

}

Last edited on
Topic archived. No new replies allowed.