Quick actions

cmd+k|ctrl+k

Navigation

Languages

Jazziec

Snippet info

Language

C

Visibility

public

Author

jessicasahetapy99

Created

2023-03-13T06:40:48.010996Z

Updated

2023-03-13T06:40:48.010996Z

/* 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