+ 1

[Solved] Help me!!!! How c++ handles variables during input failures.

Fail states

27th Dec 2020, 8:21 PM
PRINCE TAWIAH
PRINCE TAWIAH - avatar
13 Réponses
+ 2
Great after a long search, I had to change my query style and I found the solution. It is something that has to do with c++ version development and this link will explain it all. And don't worry as you wouldn't be bored. http://www.cplusplus.com/forum/beginner/144062/
28th Dec 2020, 6:59 PM
PRINCE TAWIAH
PRINCE TAWIAH - avatar
+ 3
try something like this, notice the temp variable. int num; int temp; while(cin.good()){ temp = num; cin >> num; } cin.clear(); cout << "last entry was " << temp;
27th Dec 2020, 9:03 PM
rodwynnejones
rodwynnejones - avatar
+ 2
Hello, everyone, I have got a question. During data entry via cin, memory called a buffer holds these entries until extracted into variables. Suppose I have got a single variable and given this code bit; int num; cin >> num; while (cin) { cin >> num; } cout << num; And my entries are 1, 2, f At the end of program execution, num = 0. But my expectation is after input stream enters a fail state, num = 2. So what happened????
27th Dec 2020, 8:22 PM
PRINCE TAWIAH
PRINCE TAWIAH - avatar
+ 1
I am trying to understand what happens during input
27th Dec 2020, 8:28 PM
PRINCE TAWIAH
PRINCE TAWIAH - avatar
+ 1
So why does it do that??
27th Dec 2020, 8:35 PM
PRINCE TAWIAH
PRINCE TAWIAH - avatar
+ 1
You aren't getting me. The code isn't a sort of task I want to do hence experiencing a problem. I just am experimenting with the behaviors of certain token, functions, etc. So I need explanation to the behaviour I see.
27th Dec 2020, 8:39 PM
PRINCE TAWIAH
PRINCE TAWIAH - avatar
+ 1
From what I got from a telegram group, the answerer supposes that since the invalid data could not be extracted into the num variable, cin might have just set the variable to a default value. And that kinda sounds like the case except I don't know. However, using codeblocks as my ide, I have noticed that uninitiated int variables have 0 as default value. Maybe my source might be right.
27th Dec 2020, 10:03 PM
PRINCE TAWIAH
PRINCE TAWIAH - avatar
0
Well, the code is to have user continuously enter any number until input is invalid.
27th Dec 2020, 8:27 PM
PRINCE TAWIAH
PRINCE TAWIAH - avatar
0
If I make it not cin, then the loop will be infinite
27th Dec 2020, 8:32 PM
PRINCE TAWIAH
PRINCE TAWIAH - avatar
0
The whole thing is that I thought an invalid input causing a fail state would just ignore other entries within that current input stream. But here as I am using the same variable all the time, it appears as that variable simply reset itself even though it previously had a matching entry
27th Dec 2020, 8:35 PM
PRINCE TAWIAH
PRINCE TAWIAH - avatar
0
The only way I can explain it is (not sure if it's technically correct)... It's the invalid entry that causing the cin to fail, but it's still extracted into the variable. I'll be watching this thread to see how C++ experts explain it.
27th Dec 2020, 9:46 PM
rodwynnejones
rodwynnejones - avatar
0
Tell me how can i help you???
28th Dec 2020, 5:03 PM
Ümmãì Årshî
Ümmãì Årshî - avatar
0
Well, you see my code, I gave 3 input, with the last one meant to create an input failure hence end the loop. I expected that the second input should remain assigned to the variable after the next invalid input but it just wasn't so. Instead the variable num was assigned zero. I would be very glad if anyone can give the "theoretical" explanation to that.
28th Dec 2020, 6:44 PM
PRINCE TAWIAH
PRINCE TAWIAH - avatar