Basic Data Types

  • + 0 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; }