cin c++ example
Example 1: how to grab all of user input c++
#include <iostream>
#include <string>
using namespace std;
int main ()
{
string mystr;
cout << "What's your name? ";
getline (cin, mystr);
cout << "Hello " << mystr << ".\n";
cout << "What is your favorite team? ";
getline (cin, mystr);
cout << "I like " << mystr << " too!\n";
return 0;
}
Example 2: cin in c++
cin >> varName;
Example 3: get data from terminal c++
int i;
cout << "Please enter an integer value: ";
cin >> i;
Example 4: cin syntax in c++
cin >> var1 >> var2 >> … >> varN;