1
0
Fork 0
mirror of https://github.com/vbatts/bitorchestra.git synced 2024-11-23 09:05:41 +00:00

and another

This commit is contained in:
Vincent Batts 2011-11-14 10:34:33 -05:00
parent dd8b338e5e
commit 0a84896c2a

12
f6.c Normal file
View file

@ -0,0 +1,12 @@
main(t){
int y,x;
for(t=0;;t++)
{
x=t*"6689"[t>>16&3]/24&127;
y=t&16383;
if (y==0 || x==0)
continue;
putchar((30000000000/(y)&1)*35+(x)*y/400000000+((t>>8^t>>10|1>>14|x)&63));
}
}