Failcheck message gets repeated for the same amount of invalid characters contained inside the wcin
I am currently getting back to programming and started with a simple second degree equation calculator. I'm getting an unexpected behavior which I have no idea why is happening.
I have a while that checks if the values of a, b and c are numerical, with a fail message if they are not. But the fail message gets repeated for the same amount of invalid characters inside the unacceptable input.
Here is the code:
wcout << "Insert a value for a: n";
wcin >> a;
while (wcin.fail())
{
wcin.clear();
wcin.ignore();
wcout << L"Please insert a numerical value.n";
wcin >> a;
}
Example of the problem described.
If someone knows what is going on, I'd appreciate the help
EDIT: I am using wcout and wcin because of UNICODE characters such as letters with accent marks and greek symbols. I don't know if this problem could be related to this, but often I get the error saying "wcin/wcout is ambiguous"
c++ validation input calculator
add a comment |
I am currently getting back to programming and started with a simple second degree equation calculator. I'm getting an unexpected behavior which I have no idea why is happening.
I have a while that checks if the values of a, b and c are numerical, with a fail message if they are not. But the fail message gets repeated for the same amount of invalid characters inside the unacceptable input.
Here is the code:
wcout << "Insert a value for a: n";
wcin >> a;
while (wcin.fail())
{
wcin.clear();
wcin.ignore();
wcout << L"Please insert a numerical value.n";
wcin >> a;
}
Example of the problem described.
If someone knows what is going on, I'd appreciate the help
EDIT: I am using wcout and wcin because of UNICODE characters such as letters with accent marks and greek symbols. I don't know if this problem could be related to this, but often I get the error saying "wcin/wcout is ambiguous"
c++ validation input calculator
add a comment |
I am currently getting back to programming and started with a simple second degree equation calculator. I'm getting an unexpected behavior which I have no idea why is happening.
I have a while that checks if the values of a, b and c are numerical, with a fail message if they are not. But the fail message gets repeated for the same amount of invalid characters inside the unacceptable input.
Here is the code:
wcout << "Insert a value for a: n";
wcin >> a;
while (wcin.fail())
{
wcin.clear();
wcin.ignore();
wcout << L"Please insert a numerical value.n";
wcin >> a;
}
Example of the problem described.
If someone knows what is going on, I'd appreciate the help
EDIT: I am using wcout and wcin because of UNICODE characters such as letters with accent marks and greek symbols. I don't know if this problem could be related to this, but often I get the error saying "wcin/wcout is ambiguous"
c++ validation input calculator
I am currently getting back to programming and started with a simple second degree equation calculator. I'm getting an unexpected behavior which I have no idea why is happening.
I have a while that checks if the values of a, b and c are numerical, with a fail message if they are not. But the fail message gets repeated for the same amount of invalid characters inside the unacceptable input.
Here is the code:
wcout << "Insert a value for a: n";
wcin >> a;
while (wcin.fail())
{
wcin.clear();
wcin.ignore();
wcout << L"Please insert a numerical value.n";
wcin >> a;
}
Example of the problem described.
If someone knows what is going on, I'd appreciate the help
EDIT: I am using wcout and wcin because of UNICODE characters such as letters with accent marks and greek symbols. I don't know if this problem could be related to this, but often I get the error saying "wcin/wcout is ambiguous"
c++ validation input calculator
c++ validation input calculator
edited Nov 20 '18 at 15:54
Ignis
asked Nov 20 '18 at 15:45


IgnisIgnis
84
84
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
While wcin.clear()
only sets the stream error state flags, the input stream must be reset, for example by wcin.ignore(...)
If you use wcin.ignore()
it will use default parameters (see here): one character or the end of file condition.
Entering "aaa" will only extract an 'a', the rest remain in the input, which will be re-tested again in the next while-loop.
Entering from the console usually implies the 'Enter' key, whose character is 'n'
. This is the delimiter we need to use to reset the input:
wcin.ignore(100, 'n');
Notice I've written 100
. If you want to discard any number of characters then you need:
#include <limits>
....
wcin.ignore(std::numeric_limits<std::streamsize>::max(), 'n');
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53396623%2ffailcheck-message-gets-repeated-for-the-same-amount-of-invalid-characters-contai%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
While wcin.clear()
only sets the stream error state flags, the input stream must be reset, for example by wcin.ignore(...)
If you use wcin.ignore()
it will use default parameters (see here): one character or the end of file condition.
Entering "aaa" will only extract an 'a', the rest remain in the input, which will be re-tested again in the next while-loop.
Entering from the console usually implies the 'Enter' key, whose character is 'n'
. This is the delimiter we need to use to reset the input:
wcin.ignore(100, 'n');
Notice I've written 100
. If you want to discard any number of characters then you need:
#include <limits>
....
wcin.ignore(std::numeric_limits<std::streamsize>::max(), 'n');
add a comment |
While wcin.clear()
only sets the stream error state flags, the input stream must be reset, for example by wcin.ignore(...)
If you use wcin.ignore()
it will use default parameters (see here): one character or the end of file condition.
Entering "aaa" will only extract an 'a', the rest remain in the input, which will be re-tested again in the next while-loop.
Entering from the console usually implies the 'Enter' key, whose character is 'n'
. This is the delimiter we need to use to reset the input:
wcin.ignore(100, 'n');
Notice I've written 100
. If you want to discard any number of characters then you need:
#include <limits>
....
wcin.ignore(std::numeric_limits<std::streamsize>::max(), 'n');
add a comment |
While wcin.clear()
only sets the stream error state flags, the input stream must be reset, for example by wcin.ignore(...)
If you use wcin.ignore()
it will use default parameters (see here): one character or the end of file condition.
Entering "aaa" will only extract an 'a', the rest remain in the input, which will be re-tested again in the next while-loop.
Entering from the console usually implies the 'Enter' key, whose character is 'n'
. This is the delimiter we need to use to reset the input:
wcin.ignore(100, 'n');
Notice I've written 100
. If you want to discard any number of characters then you need:
#include <limits>
....
wcin.ignore(std::numeric_limits<std::streamsize>::max(), 'n');
While wcin.clear()
only sets the stream error state flags, the input stream must be reset, for example by wcin.ignore(...)
If you use wcin.ignore()
it will use default parameters (see here): one character or the end of file condition.
Entering "aaa" will only extract an 'a', the rest remain in the input, which will be re-tested again in the next while-loop.
Entering from the console usually implies the 'Enter' key, whose character is 'n'
. This is the delimiter we need to use to reset the input:
wcin.ignore(100, 'n');
Notice I've written 100
. If you want to discard any number of characters then you need:
#include <limits>
....
wcin.ignore(std::numeric_limits<std::streamsize>::max(), 'n');
answered Nov 20 '18 at 18:15
Ripi2Ripi2
4,2831825
4,2831825
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53396623%2ffailcheck-message-gets-repeated-for-the-same-amount-of-invalid-characters-contai%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown