Quick actions

cmd+k|ctrl+k

Navigation

Languages

Assyifa N.

Snippet info

Language

C

Visibility

public

Author

assyifanurul17

Created

2023-03-13T06:39:50.153446Z

Updated

2023-03-13T06:39:50.153446Z

/* Program Cetak Bilangan Bulat dan Desimal */
#include <stdio.h>

int main() {
    int a, b;
    float c;
    
    scanf ("%d %d %f", &a, &b, &c);
    printf ("%d %d %.3f\n", a, b, c);
    return 0;
}
INFO