c++ ask user for 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: cout value c++
#include <iostream>
using namespace std;
int main()
{
int a,b;
char str[] = "Hello Programmers";
cout << "Enter 2 numbers - ";
cin >> a >> b;
cout << str;
cout << endl;
cout << "Value of a is " << a << endl << "Value of b is " << b;
return 0;
}
Example 3: 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;