Skip to content

Commit

Permalink
Solve Even Numbers in c
Browse files Browse the repository at this point in the history
  • Loading branch information
deniscostadsc committed Sep 20, 2024
1 parent 1f0e3bc commit af3edcb
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions solutions/beecrowd/1059/1059.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#include <stdint.h>
#include <stdio.h>

int main() {
for (int16_t i = 2; i <= 100; i += 2) {
printf("%d\n", i);
}
return 0;
}

0 comments on commit af3edcb

Please sign in to comment.