Quick actions

cmd+k|ctrl+k

Navigation

Languages

deret bilangan

Snippet info

Language

Cpp

Visibility

public

Author

laodeiyan21

Created

2026-01-14T04:52:49.361706Z

Updated

2026-01-14T04:52:49.361706Z

#include <stdio.h>

// Nama : la ode ia
// Nim  : 3420210002
// prodi: informatika

int main() {
    int i;

    printf("Deret Bilangan:\n");

    for (i = 10; i <= 100; i += 10) {
        printf("%4i", i);
    }

    return 0;
}
INFO