std::cin is the global stream object provided by the C++ standard library for reading from the standard input stream.
0
votes
1answer
50 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
41 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
59 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
30 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
38 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
51 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
146 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
36 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
66 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
32 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
55 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
102 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
66 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
61 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
61 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
36 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
80 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
84 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
71 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
53 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
26 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
55 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
64 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
64 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
44 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
115 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
90 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
67 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
101 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
60 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
39 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
77 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
33 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) {
...
0
votes
2answers
39 views
How to check if user input enough items?
Say I have user input these variables: ID name age
And I'm using a while loop to get user input like below
while(cin){
cin >> ID >> name >> age;
do_stuff(ID, name, age);
}
...
0
votes
1answer
45 views
Fastest way to parse arguments from standard input
Suppose you receive information from the standard input that's formatted in the following way:
1 2 3 #3 John Tee #2
4 2 1 @1 Tree Bee #9
<int><int><int><char followed by ...
1
vote
1answer
72 views
cin.Getline returns nothing
I am trying to learn c++. I am on strings now.
I have written this simple method that should ask to input a string and then return it. To do so I am using cin.getLine() method but the string is not ...
0
votes
1answer
162 views
Bad input C vs C++ cin vs scanf
Im a total beginner in C and here is my problem. In C++ I would look for bad input(not unsigned int) this way:
long double c;
cin >> c;
if (c == (unsigned int) c) {
cout<<"OK";
}
...
2
votes
2answers
135 views
Why does this work? Using cin to read to a char array smaller than given input
I'm reading C++ Primer Plus (6th Edition) and I've come across some sample code in chapter 4 which I have a question about:
Listing 4.2 strings.cpp
// strings.cpp -- storing strings in an array
...
1
vote
2answers
127 views
Can std::cin switch from accepting file input to keyboard input at run-time?
Suppose I have a program that accepts input from the keyboard, or alternatively accepts redirected input from a file such that:
#include <iostream>
using namespace std;
int main() {
string ...
0
votes
2answers
88 views
How to make cin >> not convert float to integer?
I have the following simple code:
#include <iostream>
int main()
{
int a;
std::cout << "enter integer a" << std::endl;
std::cin >> a ;
if (std::cin.fail())
{
...
0
votes
2answers
96 views
how to check that for variable of type int, cin does not take numbers as well characters
I am new to C++. I wrote a function in which I want the user to enter an integer value. I know how to prevent the input of characters using:
if(!(cin>>a))
or
if (cin.fail())
...
0
votes
3answers
113 views
c++ do while loop with user input
I am trying to make it so if the user enters a number less than 4 or greater them 10 they are prompted it is invalid and to enter a new number. the problem i am having is if they do enter a proper ...
0
votes
4answers
81 views
C++ input not being read
I just started with c++ (coming from java) and I'm trying to do some basic exercises. The idea is to ask for any input other than 5, if the user inputs 5, display a message, and if the user inputs ...
1
vote
4answers
296 views
cin: check if number is an integer or float even if float value is 1.000
while using std::cin >> number in the following way:
float number;
while(std::cin >> number) {
//perform a check here if possible
//if number does not contain a decimal point do this
...
1
vote
1answer
62 views
How to make pointers to chars in the second array
I have an array of chars. n is array's length
char tab[n];
cin.get(tab, n);
cout<<tab<<"\0"<<endl;
then I create second array
char* t = new char[n];
for(int i = 0; ...
0
votes
4answers
64 views
How to cin whole sentence with whitespaces [closed]
I have
char tab[200];
cin>>tab;
cout<<tab<<endl;
and i would like to make that even if I input in console A B C all the 3 chars and spaces go into tab at once .
0
votes
0answers
49 views
Inputting only one character
Normally, I'd prompt the user to enter a specific character (for example q to quit) using std::cin, so that he can input q, press enter and the program responds accordingly.
I'm new to C++, so I'd ...
0
votes
2answers
77 views
Assigning variables while ignoring symbols? (c++) [duplicate]
I was wondering how you would assign multiple variables from a single line of user input if it contained symbols. Such as, if the user input was 5-25-1995, is it possible to assign 5, 25, and 1995 to ...




