Basic Data Types

  • + 0 comments

    int main() { // Complete the code. int a; long b; char c; float d; double e;

    cin >> a >> b >> c >> d >> e;
    cout << a << endl << b << endl << c << endl;
    printf("%.3f\n", d);
    printf("%.9f\n", e); 
    
    return 0;
    

    }