From 00e4f26933c0313df9124cb228887d32b30c8a93 Mon Sep 17 00:00:00 2001 From: SUGANTHAN B <43144634+Suganthb@users.noreply.github.com> Date: Mon, 21 Oct 2019 13:02:29 +0530 Subject: [PATCH] Basic Data Types problem in Hacker Rank --- CPP/datatypes.cpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 CPP/datatypes.cpp diff --git a/CPP/datatypes.cpp b/CPP/datatypes.cpp new file mode 100644 index 0000000..70f1bc2 --- /dev/null +++ b/CPP/datatypes.cpp @@ -0,0 +1,18 @@ +#include +using std::cin; +using std::cout; +using std::endl; +using std::fixed; + +int main() { + int a; long b; char c; float d; double e; + cin>>a>>b>>c>>d>>e; + cout<