Quick actions

cmd+k|ctrl+k

Navigation

Languages

Karmelyta

Snippet info

Language

C

Visibility

public

Author

gkarmelyta

Created

2023-03-13T06:34:55.168084Z

Updated

2023-03-13T06:35:54.942656Z

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