Quick actions

cmd+k|ctrl+k

Navigation

Languages

Isabella

Snippet info

Language

Cpp

Visibility

public

Author

isabelakarina446

Created

2023-03-13T06:36:04.3449Z

Updated

2023-03-13T06:36:53.95264Z

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