C_dumping-ground/hello.c

16 lines
208 B
C
Raw Normal View History

2021-10-09 21:05:09 -04:00
#include <stdio.h>
int main() {
long x = 76;
while(x != 1) {
if(x % 2 == 0) {
x /= 2;
}
else {x = (x * 3) + 1;}
printf("%ld\n", x);
}
return 0;
}