Skip to content

Instantly share code, notes, and snippets.

View romariorobby's full-sized avatar
🎯
Focusing

romario romariorobby

🎯
Focusing
View GitHub Profile
@romariorobby
romariorobby / odd.cpp
Created February 17, 2024 08:25
UAS INFORMATIKA
#include <iostream>
void calculateArea()
void getOdds(int n) {
for (int i = 1; i <= 2 * n; i++){
if (i % 2 == 0) {
cout << i << "\n";
}
}