代码搜索:预置数

找到约 10,000 项符合「预置数」的源代码

代码结果 10,000
www.eeworm.com/read/265553/11261203

txt 数的运算测试实例.txt

"数的运算"测试实例 数的算术运算(整数,分数,浮点数): ================================= >42384023234/23422; //化简 432490033/239 >iquo(42384023234,23422); 1809581 >irem(42384023234,23422); 17
www.eeworm.com/read/248263/12587232

txt 七数平均值.txt

10 rem calculate average of seven integers 20 input x 30 rem enter -9999 to stop 35 if x == -9999 goto 60 40 let t = t + x 50 goto 20 60 let t = t / 7 65 print t 70 end
www.eeworm.com/read/134640/13978731

txt 随机数1.txt

01011111101100100000111001111010000010010010110001011011001001110000110101110100011101101000000000010001011100100000011010001001001011101110110101010010011110000001100010100011010011101110101000100100
www.eeworm.com/read/134037/14011906

c 二进制数.c

/*递归法求二进制数*/ #include void printb(int x,int n); void main() { int x; printf("input number:"); scanf("%d",&x); printf("number of decimal form: %d\n",x);