You are viewing a single comment's thread. Return to all comments →
#include <iostream> #include <cstdio> using namespace std; int main() { int x; long y; char a; float f; double z; cin>>x>>y>>a>>f>>z; cout<<x<<endl<<y<<endl<<a; printf("\n%.3f \n", f); printf("%.9lf", z); return 0; }
Seems like cookies are disabled on this browser, please enable them to open this website
Basic Data Types
You are viewing a single comment's thread. Return to all comments →