You are viewing a single comment's thread. Return to all comments →
using namespace std; int main() {
int a; long long b; char c; float d; double e; cin >> a >> b >> c >> d >> e;
cout << a << endl ;
cout << b << endl; cout << c << endl; cout << fixed << setprecision(3) << d << endl; cout << fixed << setprecision(9) << e << endl; 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 →
include
using namespace std; int main() {
int a; long long b; char c; float d; double e; cin >> a >> b >> c >> d >> e;
cout << b << endl; cout << c << endl; cout << fixed << setprecision(3) << d << endl; cout << fixed << setprecision(9) << e << endl; return 0; }