Basic Data Types

  • + 0 comments

    include

    include

    include

    include

    include

    using namespace std;

    int main() { /* Enter your code here. Read input from STDIN. Print output to STDOUT */
    int a; long b; char c; float d; double e;

    cin>>a >>b >>c >>d >>e; printf("%d \n%ld \n%c \n%f \n%lf \n", a, b, c, d, e);

    return 0;

    }