c++ read input code example
Example 1: user input c++
#include <iostream>
int main(){
std::string firstname;
std::cout << "What's your first name\n";
std::cin >> firstname;
std:: cout << "Hello " << firstname
}
Example 2: 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 3: how to get input from the console in c++
int age;
cin >> age;
Example 4: C++ user input
int x;
cout << "hurry, give me a number!: ";
cin >> x;
cout << "you picked: " << x << " !"
OR use:
getline >> (cin, variable-name);
instead of
cin >> x;
Example 5: how to get input in cpp
#include <iostream>
using namespace std;
int main ()
{
int i;
cout << "Please enter an integer value: ";
cin >> i;
cout << "The value you entered is " << i;
return 0;
}