9 lines
138 B
C
9 lines
138 B
C
#include <stdio.h>
|
|
|
|
int main(void) {
|
|
int three = 3;
|
|
while (three > 0) {
|
|
printf("%d\n", three);
|
|
three *= 3;
|
|
}
|
|
} |