mirror of
https://github.com/deater/tb1.git
synced 2024-12-23 04:29:42 +00:00
16 lines
190 B
C
16 lines
190 B
C
#include <stdio.h>
|
|
|
|
int main(int argc, char **argv) {
|
|
|
|
int i;
|
|
|
|
for(i=0;i<256;i++) {
|
|
printf("%i = %x = %i\n",i,i,(26+27*i+5*i*i)/2);
|
|
}
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
}
|