Quick actions

cmd+k|ctrl+k

Navigation

Languages

deret bilangan 01

Snippet info

Language

Cpp

Visibility

public

Author

laodeiyan21

Created

2026-01-14T04:57:20.704442Z

Updated

2026-01-14T04:57:20.704442Z

#include <stdio.h>

/*  nama : la ode ian
    nim  : 342021002
    prodi: informatika
*/
int main() {
    int i;

    printf("Deret Bilangan:\n");

    for (i = 100; i >= 55; i -= 5) {
        printf("%4i", i);
    }

    return 0;
}
INFO