Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to end the input process? [duplicate]

Tags:

c++

user-input

I want to read a line of integers from the user. I'm not sure how to check to see if the input has ended. For example I want to be able to do something like

int x[MAX_SIZE];
int i = 0;
while(cin.hasNext())
{
  cin >> x[++i];
}

Example input: 2 1 4 -6

how can I check to see if there's any more for cin to take?

like image 937
Celeritas Avatar asked Dec 17 '25 22:12

Celeritas


1 Answers

Yo have to do the following

int temp;

vector<int> v;
while(cin>>temp){
    v.push_back(temp);
}

also you can check for end of input using

if(cin.eof()){
    //end of input reached
}
like image 93
Miguel Carvajal Avatar answered Dec 20 '25 16:12

Miguel Carvajal