Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
7answers
17k views

How do I flush the cin buffer?

How do I clear the cin buffer in C++?
6
votes
3answers
253 views

A simple question about cin

this might be a very simple question. In the following loop, if we type characters as the cin input instead of numbers which are expected, then it goes into infinite loop. Could anyone please explain ...
6
votes
1answer
3k views

How to read cin with whitespace up until a newline character?

I wish to read from cin in C++ from the current position up until a newline character into a string. The characters to be read may include spaces. My first pass fails because it stops on the first ...
5
votes
6answers
310 views

if (cin >> x) as a condition

I have been using "Accelerated C++" to learn C++ over the summer, and there's a concept which I don't seem to understand properly: Why is int x; if (cin >> x){} equivalent to cin >> ...
5
votes
5answers
362 views

Problem of using cin twice

Here is the code: string str; cin>>str; cout<<"first input:"<<str<<endl; getline(cin, str); cout<<"line input:"<<str<<endl; The result is that getline never ...
4
votes
3answers
226 views

changing the delimiter for cin (c++)

I've redirected "cin" to read from a file stream cin.rdbug(inF.rdbug()) Every time I uses the '<<' operator it reads until it reaches a white space. Is it possible to change the white space to ...
4
votes
4answers
324 views

cin.getline( ) with larger size

#include<iostream> using namespace std; int main() { char test[10]; char cont[10]; cin.getline(test,10); cin.getline(cont,10); cout<<test<<" is not ...
4
votes
2answers
120 views

Is it possible to “prepare” input from cin?

In his answer, specifically in the linked Ideone example, @Nawaz shows how you can change the buffer object of cout to write to something else. This made me think of utilizing that to prepare input ...
4
votes
3answers
187 views

Why does std::cin.getline not have an oveloaded method to take std::string?

I'm curious about the technical reason for cin.getline and the global getline function being in different places. What was the motivation for not simply defining all these function signatures for ...
4
votes
4answers
1k views

how do I validate user input as a double in C++?

How would I check if the input is really a double? double x; while (1) { cout << '>'; if (cin >> x) { // valid number break; } else { // not a ...
4
votes
1answer
225 views

C++ cin questions

This seems to be weird: int main(int argc, char* argv[]) { cout << "function main() .." << '\n'; char ch = 0; double number_value=1.1; cin >> ch; ...
4
votes
4answers
161 views

cin erratic behaviour

I'm a newbie to C++. Small code sample follows: int main(int argc, char* argv[]) { char ch1; int int1; cin >> ch1; cin >> int1; cout << ch1 << ...
4
votes
2answers
286 views

First while loop's first iteration always fails to take input. 2+ loops work fine

The bug starts at cin.getline ( string, 25, '\n' ); or the line below it (strtod). If I use cin, it works, except I cannot quit out. If I type anything that's not a double, an infinite loop runs. Need ...
3
votes
3answers
79 views

Trying to Read a Line of Keyboard Input in C++

I mam trying to complete a college assignment in C++ and am having trouble with what should be a very basic operation. I am trying to read a string of characters from the keyboard. This is the ...
3
votes
2answers
134 views

istream_iterator ignoring EOF (Ctrl+D) when reading chars

I'm trying to use istream_iterator for reading characters from cin. I've read that pressing Ctrl+D sends an EOF character which ends the input stream. Unfortunately, something is going wrong with it. ...
3
votes
3answers
385 views

Hide user input on password prompt [closed]

Possible Duplicate: Read a password from std::cin I don't work normally with the console, so my question is maybe very easy to answer or impossible to do . Is it possible to "decouple" cin ...
3
votes
4answers
246 views

Assistance with Basic C++ Based GPA calculator and cin usage

I am trying to create a simple GPA calculator which prompts the user to enter the number of courses (using new) . This is followed by a for loop dependent on the number of courses, asking the user to ...
3
votes
2answers
170 views

How to make it read cin twice?

I have this bit of code: ... ComplexNumber C1; ComplexNumber C2; cout << "Enter a complex number C1:" << endl; cin >> C1; cout << C1 << endl; cout << "Enter a ...
3
votes
6answers
309 views

the question on while (cin >> )

I used "cin" to read words from input stream, which like int main( ){ string word; while (cin >> word){ //do sth on the input word } // perform some other ...
3
votes
3answers
195 views

spaces cant be used in string? c++

I've got a simple assignment but for some reason I'm getting an issue with spaces in strings. Basically I'm experimenting with polymorphism. I have 2 objects, a customer and a employee. a customer ...
3
votes
6answers
342 views

How do I prevent a runaway input loop when I request a number but the user enters a non-number?

I need to know how to make my cin statement not appear to 'remove' itself if you input the wrong type. The code is here: int mathOperator() { using namespace std; int Input; do { cout ...
3
votes
4answers
568 views

C++ - Quitting a program

In the C++ Without Fear: A Beginner's Guide That Makes You Feel Smart book in chapter(8), part of a code trying to display a text file is the following: while(1) { for(int i=1; i <= 24 ...
3
votes
3answers
820 views

Find the end of stream for cin & ifstream?

I'm running myself through a C++ text book that I have as a refresher to C++ programming. One of the practice problems (without going into too much detail) wants me to define a function that can be ...
3
votes
4answers
3k views

How to cin Space in c++?

Say we have a code: int main() { char a[10]; for(int i = 0; i < 10; i++) { cin>>a[i]; if(a[i] == ' ') cout<<"It is a space!!!"<<endl; } ...
3
votes
4answers
3k views

C++ Press Enter to Continue

This doesn't work: string temp; cout << "Press Enter to Continue"; cin >> temp;
3
votes
2answers
276 views

Are labview CINs old fashioned?

I am writing an application using labview and need to use external code. I have read that using CINs are old fashioned and 'wrong' to use. Is this correct? Should I use shared dlls instead? What are ...
3
votes
4answers
5k views

C++ having cin read a return character

I was wondering how to use cin so that if the user does not enter in any value and just pushes ENTER that cin will recognize this as valid input.
2
votes
3answers
51 views

C equivalent to c++ cin.peek()

What is the equivalent of cin.peek() for C programming? I need to scan files for '/r' and '/r/n' (these are the end of line markers for DOS files) so I need to "peek" ahead to the next character if ...
2
votes
1answer
49 views

“Symbol 'cin' can not be resolved” error in Eclipse on OS X

I am just beginning a C++ class and I am working on our first homework. I am using Eclipse and it's giving me some problems. Here is my code: #include <iostream> using namespace std; int ...
2
votes
2answers
111 views

How to avoid infinite loop in this program

I am trying to solve a 3n+1 problem in C++. I want to take the input in pairs and calculate its maximum cycle length then output it. I/P: 1 10 100 200 201 210 900 1000 O/P: 1 10 25 ...
2
votes
2answers
42 views

get() and peek() help for storing large numbers

I am having trouble with the cin.peek() and cin.get() functions. Input in general always eludes me. Basically, I am trying to be able to get a string of digits (that can be longer than an int which is ...
2
votes
7answers
129 views

C++ cin , Segment fault 11

This gives me seg fault 11 when I input the string. Why am i getting the seg fault? It's so simple... where is the seg fault coming from? int main(){ char * str; printf ("please enter string ...
2
votes
3answers
119 views

C++ cin vs. C sscanf

So i wrote this in C, so sscanf scans in s but then discards it, then scans in d and stores it. So if the input is "Hello 007", Hello is scanned but discarded and 007 is stored in d. static void ...
2
votes
2answers
270 views

Using cin.get() in a tight loop

I'm not new to programming, but I am relatively new to C++. I would like to distribute simple console applications so I can help others as I learn. The vast majority of machines on the campus of my ...
2
votes
2answers
109 views

Using std::wcin to read wchar_t always gives LF (10, 0xA)

I use this code in MSVC++2010 to implement a user input loop: int wmain(int argc, wchar_t* argv[]) { vector<wstring> arguments; wstring userinput; wchar_t userabort; do { ...
2
votes
4answers
139 views

C++ Novice, abusing cin in while loops for int assignment.

simply trying to compare two user defined vectors to see if they are equal, current code: vector<int> ivec1, ivec2; //vectors, uninitialized int temp1; cout << "Enter integers to be ...
2
votes
2answers
164 views

std::getline on std::cin

Is there any good reason why: std::string input; std::getline(std::cin, input); the getline call won't wait for user input? Is the state of cin messed up somehow?
2
votes
1answer
198 views

What is Scala for: getline(), std::cin.eof(), std::cin.bad()?

Here is a fragment of C++ code: int AskBase::ask_user(){ for (int tries_left = MAX_TRIES; tries_left;){ std::cout << prompt.c_str(); std::string response; ...
2
votes
2answers
252 views

why doesnt std::noskipws work or what is it supposed to do?

First off my understanding is that cin >> std::noskipws >> str; should stick a whole line from cin like "i have spaces" into str. However this only puts "i" into str. This could be a ...
2
votes
3answers
184 views

C++ spaces mark end of input in cin?

I'm just learning some stuff about cryptography and I made a cool program to encrypt any message by rotating the letters through the alphabet a given number of letters...anyway...I have it all set up ...
2
votes
2answers
308 views

Reading piped input with C++

I am using the following code: #include <iostream> using namespace std; int main(int argc, char **argv) { string lineInput = " "; while(lineInput.length()>0) { cin >> ...
2
votes
4answers
559 views

Checking to see if user didn't input anything in “cin”

Hey guys I'm brand new to c++. How do you check to see if the user didn't input anything at a cin command and simply pressed enter? Thanks.
2
votes
1answer
1k views

linux g++, ‘numeric_limits’ was not declared in this scope, no matching function for call to ‘max()’

I compiled this code at home on my mac w/ xcode and there was no provblem. I compile it at school with g++ on linux and I get these errors: :‘numeric_limits’ is not a member of std :expected ...
2
votes
3answers
649 views

std::cin.getline( ) vs. std::cin

When should std::cin.getline() be used? What does it differ from std::cin? Thanks.
2
votes
2answers
254 views

how do I tell when a c++ program is waiting for input?

I'm trying to control a simple c++ program through python. The program works by prompting the user for input. The prompts are not necessarily endl terminated. What I would like to know is if there ...
2
votes
2answers
1k views

cin.getline is skipping one line of input and taking the next

Why does cin.getline start working for the second line on the body input but break on the first? Example Program run: Enter name: Will Enter body: hello world hello again <= It accepts this one ...
2
votes
5answers
197 views

Simple noob I/O question (C++)

sorry for the noob question, but I'm new to C++. I need to read some information, line-by-line, from a file, and perform some calculations, and output into another file. For example, we read a unique ...
2
votes
1answer
195 views

C++ CIN cin skips randomly

I have this program, but cin in randomly skips.. I mean sometimes it does, and sometimes it doesn't. Any ideas how to fix this? int main(){ /** get course name, number of students, and ...
2
votes
4answers
2k views

Is it possible to use CIN and QT?

within Qt is it possible to use cin?? I can use cout but cannot find anywhere where it shows how to use ciin within a Qt Console application many thanks, gda2004
2
votes
2answers
523 views

outputting to cin from a worker thread (c++)

My program has a main thread that takes command input from a user. Separately, it has potentially multiplie (at least 1) worker threads churning data in the background. The user is able to terminate ...

1 2 3