Quick actions

cmd+k|ctrl+k

Navigation

Languages

Latihan pemograman 6.4

Snippet info

Language

Cpp

Visibility

public

Author

reyhanapriliyanto102

Created

2026-01-03T01:13:38.507207Z

Updated

2026-01-04T03:47:17.083293Z

#include <iostream>
#include <cstdio>
using namespace std;

int main() {
    int i;

    printf("10 Bilangan Ganjil Pertama\n");
    for (i = 1; i <= 19; i = i + 2) {
        printf("%4i", i);
    }

    printf("\n\nNama : Rayhan Apriliyanto");
    printf("\nNIM  : 3420240004\n");

    return 0;
}
INFO