From ee3a6ebd2796404a11c36be7af5196f6094a4c18 Mon Sep 17 00:00:00 2001 From: khiladimahan1210 <44144513+khiladimahan1210@users.noreply.github.com> Date: Fri, 26 Oct 2018 12:24:49 +0530 Subject: [PATCH] Update simple_read --- simple_read | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 simple_read diff --git a/simple_read b/simple_read new file mode 100644 index 0000000..a502ba3 --- /dev/null +++ b/simple_read @@ -0,0 +1,25 @@ +// Header Files +#include +#include + +//Main Function + +using namespace std; + +int main() { + // Local Variable 'a' Declaration + int a; + + cout << "Simple Program for Read user Input (Integer) Using cin \n"; + + cout << "Enter Number : "; + cin >> a; + + cout << "Entered Input Is = " << a; + + // Wait For Output Screen + getch(); + + //Main Function return Statement + return 0; +} \ No newline at end of file