1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
| #include <stdio.h> #include <string>
int main() { int a[] = { 166163712 ,731332800 ,357245568 ,1074393000 ,489211344 ,518971936,406741500,294236496 ,177305856,650683500,298351053,386348487, 438258597 ,249527520 ,445362764 ,174988800,981182160 , 493042704,257493600,767478780,312840624,1404511500,316139670,619005024,372641472,373693320,498266640,452465676,208422720,515592000,719890500};
int b[] = { 1629056 ,6771600 ,3682944 ,10431000 ,3977328 ,5138336 ,7532250 ,5551632 , 3409728 ,13013670 ,6088797 ,7884663 ,8944053 ,5198490 ,4544518 ,3645600 ,10115280 ,9667504 ,5364450 ,13464540 ,5488432 ,14479500 ,6451830 ,6252576 ,7763364 ,7327320 , 8741520 ,8871876 ,4086720 ,9374400 ,5759124 };
int* c = (int*)malloc(31 * sizeof(int));
for (int i = 0; i < 32; i++) { c[i] = a[i] / b[i]; printf("%c", c[i]); } return 0; }
|