ways to get user input in c++ 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;
}