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