cout and cin in c++ code example
Example 1: C++ cin cout
int age;
cout << "How old are you ?" << endl;
cin >> age;
Example 2: get data from terminal c++
int i;
cout << "Please enter an integer value: ";
cin >> i;
int age;
cout << "How old are you ?" << endl;
cin >> age;
int i;
cout << "Please enter an integer value: ";
cin >> i;