Cpp Examples Cout Cin
# C++ Examples - Standard Input/Output
[ C++ Examples](#)
Using C++ to get user input and output it to the screen:
## Example
#includeusing namespace std; int main(){int number; cout<>number; cout<<"The number you entered is: "<<number; return 0; }
The output of the above program execution is:
Enter an integer: 12The number you entered is: 12
[ C++ Examples](#)
YouTip