Programming Languages
Welcome to coding world
This program asks user to enter a number.
When user enters an integer, it is stored in variable number
using cin.
Then it is displayed in the screen using cout.
Here is source code of the C++ Program to Display Number
(Entered by the User). The C++ program is successfully compiled and run(on
Codeblocks) on a Windows system. The program output is also shown in below.
SOURCE CODE :
/* C++ Program to
Display Number (Entered by the User) */
#include <iostream>
using namespace std;
int main()
{
int number;
cout <<
"Enter an integer :: ";
cin >>
number;
cout <<
"\nThe Number entered is :: " << number<<"\n";
return 0;
}
Output:
/* C++ Program to
Display Number (Entered by the User) */
the Number entered is :: 8
Above is the source code for C++ Program to Display Number
(Entered by the User) which is successfully compiled and run on Windows System.
The Output of the program is shown above.
If you found any error or any queries related to the above
program or any questions or reviews, you want to to ask from us, you may
Contact Us through our contact Page or you can also comment below in the
comment section. We will try our best to reach up to you in short interval.