We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
#include<iostream>#include<cstdio>#include<iomanip>usingnamespacestd;intmain(){// Complete the code.inta;longb;charch;floatf;doubled;std::cin>>a>>b>>ch>>f>>d;std::cout<<a<<endl;std::cout<<b<<endl;std::cout<<ch<<endl;std::cout<<fixed<<setprecision(3)<<f<<endl;std::cout<<fixed<<setprecision(9)<<d<<endl;return0;}
Basic Data Types
You are viewing a single comment's thread. Return to all comments →
c++