std::cin is the global stream object provided by the C++ standard library for reading from the standard input stream.

learn more… | top users | synonyms

0
votes
2answers
42 views

Limiting the number of characters of user input

I'm trying to limit # of characters a user can input. It's not like when user inputs abcde, and I limit the input length to be 3, and only abc is taken into account. Is there a way to physically ...
1
vote
5answers
42 views

Can't Break From User Input Early Based On Character?

I have a question that has evolved from one of my previous (Conditionally Breaking A Long Sequence Of Inputs?), but so far, no one has been able to give me a satisfactory answer, and all my efforts ...
0
votes
4answers
99 views
+50

Conditionally Breaking A Long Sequence Of Inputs?

I have a personal project I've been working on. To work, it needs to accept a lot of data (relatively) from the user, in the form of four different kinds of data for 12 users. As such, I have quite a ...
-2
votes
2answers
85 views

Reading digits from text file C++ [closed]

I have a code in a file and it looks like 73167176531330624919225119674426574742355349194934 96983520312774506326239578318016984801869478851843 85861560789112949495459501737958331952853208805511 ...
-2
votes
1answer
72 views

Why does cin in C++ fail to execute more than once in this loop? [duplicate]

I have a question about the cin function in C++. I was creating a simple program that will get one integer from keyboard and show it on screen. Still I wanted to improve the program so if I insert ...
0
votes
2answers
32 views

How to retrieve two istream values from a function

I have a function that prompts for two string values in one function and then returns those two strings. I need to use those two separately in a different function. How can I access both? Here is the ...
0
votes
4answers
97 views

c++ loop runs forever without waiting for input

I am trying to write code that will loop and input user input to a class and print out a chart. This is my main method: int main() { Company productMatrix; int inputNumber = 0; cout ...
0
votes
3answers
31 views

Cin input being skipped in do/while loop

cin >> subchoice; switch(subchoice) { case 1: gold = gold - 5; cout << "Now you only have " << gold << " gold.\n"; ...
0
votes
4answers
61 views

C++ cin weird behaviour [duplicate]

I have the following code: int data = 0; cout << "Enter a number: "; cin >> data; cout << "You entered " << data << endl; string str; cout ...
0
votes
2answers
34 views

C++: Spaces in strings prevent me from comparing cin input.

(Sorry, I know this question has been asked [and answered] before, but none of the solutions worked for me, because something about the way my code is set up is wonky and I have no idea which part ...
1
vote
1answer
15 views

Reading in Parameters to Objects

I am attempting to read in data to the person and car object so that I can store that data into an array. #include <iostream> #include <string> #include <vector> ...
-2
votes
1answer
50 views

While: Break immediately after word

I'm trying to assign some values to a vector from cin. How can I achieve that the while loop breaks immediately after a specific word, e.g. end, was entered? In my example it only breaks if I enter ...
0
votes
1answer
30 views

Access to callable object inside an async task conflicts with use of std::cin

#include <iostream> #include <functional> #include <future> #include <tchar.h> void StartBackground(std::function<void()> notify) { auto background = ...
0
votes
3answers
36 views

Reading input into Vector Objects

Hi I am attempting to read data into a vector of objects but I am having trouble doing so. I have created a class and a vector of that class. When I try to read data into the the vector I get class ...
0
votes
1answer
61 views

Checking for valid type input using std::cin (C++)

I am working on the game 'Hex' for a C++ class, and am having trouble understanding how to make sure cin is reading the correct type. I have done some research and I'm close, but here is my problem: ...
0
votes
1answer
60 views

C++: Reading characters before pressing ENTER

for like few hours now, I am trying to figure out how to read characters from cin before pressing ENTER (by using threads). I know about conio.h library but I prefer not to use it. I wrote simple ...
1
vote
1answer
51 views

cin.get with escape character

I have code using cin.get( input, c ) where c is the delimiter character. It fails on rare occasions because there is another character e used as an escape. So, if c follows e, I want cin.get to go to ...
1
vote
2answers
60 views

Inputing a string to an int produces wrong output in c/c++

#include <iostream> #include <string> using namespace std; int main() { // Declare a variable to store an integer int InputNumber; cout << "Enter an integer: "; // store ...
0
votes
2answers
34 views

How to get a set of words with spaces as one input in C?

In a program I created I need to get some customer information to an array. Below are the codes regarding my question. struct CustomerType { string fName; string lName; char gender; ...
1
vote
1answer
41 views

How to implement "press to enter"in c++

any idea on how to implement a "press any key to move on" in c++? Based on my understanding, for any input stream function, it all requires users to hit "enter" to read. But how do I make it like ...
1
vote
2answers
57 views

cin to vector in C++

This is how my program works. It prompts for user input, once non-digit detected, the loop will stop. Here is my code : int size = 0; float number; float total = 0; vector <float> data; ...
3
votes
2answers
148 views

Why does this C++ program print “2”?

I'm new to C++, but here's my code: #include <iostream> using namespace std; int main() { int x; cin >> x; cout << "x = " << x << endl; system("pause"); ...
0
votes
1answer
56 views

User Input in OpenGL

So I'm creating a simple game (in this case it's a asteroid clone game) and while i press "Start Game" in my Menu section I get to this window: Now I want to put my nick in that frame but I have no ...
0
votes
2answers
91 views

Console::WriteLine() vs. cout

I've just started trying to teach myself C++ (I've been a C# programmer for about a year now) and I can't understand for the life of me what the difference is between Console::WriteLine("Hello World") ...
-1
votes
1answer
33 views

Can't read first string

Here is the code #include<iostream> #include<cstring> #define limit 25 using namespace std; int main() { int te; //Number of test cases cin>>te; while(te) { ...
0
votes
2answers
63 views

How use `cin` to pause the program for 10 seconds in C++

Exacly as stated in the subject: how use cin to wait(pause the program) for 10 seconds in C++. I would like to make it act simiral to java's Thread.wait. EDIT: I am asking about cin
0
votes
2answers
105 views

cin in a while-loop

#include <iostream> using namespace std; int main() { string previous; string current; while (cin >> current) { if(current == previous) { ...
0
votes
2answers
84 views

Function in C++ to read the console if there is data and if not continue execution?

I was wondering if there is a function in C++ that can retrieve data that was given in the console, and if there is not, do not pause in the cin and continue the program execution. Thanks
0
votes
1answer
67 views

C++ atoi grabs values of other characters created in same portion of program

I am trying to read a string of 9 characters into 9 integer values, to be stored in an array (for now I store them in 9 separate ints, will put them in the array once they read in OK). General ...
0
votes
2answers
71 views

cin.get and char error message

Below is my code. I want my program to take in the first character of an input word and save as number1 and take the second character as number2. However I am getting an error message. "Conversion ...
0
votes
1answer
39 views

Why am I getting a segfault on cin?

I am writing a fairly simple exercise (homework), and most of it works, however it sometimes segfaults on cin. Here is the relevant code. int main() { std::string str = ""; std::cout << ...
1
vote
1answer
8 views

Validating Char function

SoI have to be able to validate the user input and make sure itis y or n for some reason it's not giving it to me and it is spamming the body of the while loop.. Please help.Thanks char ...
-2
votes
4answers
84 views

How to get rid of Cout text c++ [closed]

Hello so I made a program that takes two inputs (firstNumber, secondNumber). Then it outputs the sum of them. so the total thing would like this: Please Enter Your First Number: 3 Please Enter Your ...
1
vote
4answers
95 views

C++ How to cin a char as a number instead of character

I find myself often using variables that contain a very small range of numbers (typically from 1 to 10) and would like to minimize the amount of memory I use by using the char data type instead of int ...
0
votes
5answers
89 views

C++ - How do you loop back after user input?

In my previous question, I got this answer to work so that if the user inputs more than 5 characters in the nation name, it will output an error. #include <iostream> #include <iomanip> ...
0
votes
1answer
61 views

How do you limit the maximum amount of characters in user input in C++?

I want it so that when the user inputs more than 5 characters, something will happen, instead of just skipping the rest. In this code, if you type in more than 5 characters, it will only show the ...
-2
votes
1answer
27 views

Get a line with spaces of unknown size [duplicate]

I want to read a string, the string can contain spaces. I tried: char* str; cin >> str; // but I have to allocate a memory by making new so I think about: string str; cin >> str; ...
0
votes
2answers
67 views

How do I use cin in a while loop?

I'm trying to get the user to input their name(s) using a while loop with an array and cin, but after the last person's name is input, the program crashes instead of moving on. Is there a way to fix ...
0
votes
1answer
73 views

Valgrind error with std::cin

Here is my code: std::string getword() { std::string temp; std::cin >> temp; return temp; } Valgrind throws an error on the line std::cin >> temp. Here is the valgrind output for ...
2
votes
1answer
67 views

cin as a conditional in a while loop?

A bit new to C++ here. Is it possible to do something like the following? int temp; while(cin >> temp != -9999){//Do something with temp} I can't get that exact code to work, but I feel like ...
0
votes
2answers
47 views

Cin Show Default Value

With C++ is it possible to give the user a default value with the Cin statement, then have them backspace what they want to change? For instance: I give the user an option to change a string name, I ...
2
votes
3answers
154 views

Using the console in a GUI app in windows, only if its run from a console

My application is a GUI app that has helpful (though optional) information through the terminal (via cout). In Windows I either have a console appear (by compiling as a console app, or allocating it ...
0
votes
2answers
99 views

std::cin:: and why a newline remains

Reference Why is the Console Closing after I've included cin.get()? I was utilizing std::cin.get() #include<iostream> char decision = ' '; bool wrong = true; while (wrong){ std::cout ...
0
votes
1answer
78 views

cin.getline() not adding \0 to the end of the array C++

I've got a code line as follows: const int maxtext=1000; char text[maxtext]; cin.getline(text,maxtext); Then when I try to see the sizeof(text) It shows me maxtext, not the length of the ...
0
votes
1answer
21 views

Console Width; Assume Default Or Be Made An …?

Reading input from the console if(std::cin){ decision = std::cin.get(); if(std::cin.eof()) throw CustomException("Error occurred while reading input\n"); }else{ throw ...
0
votes
3answers
129 views

CIN to either string or int variable then to overloaded constructor functions

Total newb here, so go easy :) I've googled and can't really seem to find an elegant solution to this. I'm doing some coding to learn a few concepts. I have a class - called 'sally' which has a ...
0
votes
2answers
70 views

Cin.get() not working second time i use it

#include <iostream> #include <strings.h> using namespace std; void encyclopedia() { int choice; int choice2; system("CLS"); cout << "Content Menu\n\n" << "1. Gore\n\n" ...
0
votes
0answers
40 views

cin is checking for malformed input, but also now crashes on EOF

So I'm reding input through cin in this while loop: while (getline(cin,s)) { cin >> name; if (!cin) exit(1); cin >> age; in (!cin) exit(1); } to read a ...
0
votes
1answer
88 views

cin / cout being skipped

I've been writing a sample program to compare runtimes of some algorithms, and this one has been causing me some trouble. For some reason, cin / cout is randomly skipped at various parts throughout ...
-1
votes
1answer
34 views

How to ignore the empty line at the end of input

The following code works fine and also check if user has input right amount of items, but it fails when the input has a trailing empty line. string item1, item2, item3; while(cin.good) { ...

1 2 3 4 5 8