how to get input from use in c++ code example
Example 1: how to print a string to console in c++
#include <iostream>
#include <string>
using namespace std;
int main()
{
cout << "Print a String" << endl;
}
Example 2: how to output text in c++
std::cout << " Something ";
Example 3: 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;
}
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;