Answers for "C++ keyboard input"

C++
0

C++ keyboard input

#include <iostream>  // for std::cout and std::cin
 
int main()
{
    std::cout << "Enter a number: "; // ask user for a number
 
    int x{ }; // define variable x to hold user input (and zero-initialize it)
    std::cin >> x; // get number from keyboard and store it in variable x
 
    std::cout << "You entered " << x << '\n';
    return 0;
}

Enter a number: 4
You entered 4
Posted by: Guest on June-01-2021

Browse Popular Code Answers by Language