代码搜索:Carry

找到约 8,060 项符合「Carry」的源代码

代码结果 8,060
www.eeworm.com/read/421666/10712906

mod money.mod

/* MONEY, a crypto-arithmetic puzzle */ /* Written in GNU MathProg by Andrew Makhorin */ /* This is the classic example of a crypto-arithmetic puzzle published in the Strand M
www.eeworm.com/read/158756/10731270

s rand.s

AREA |subr|, CODE, READONLY EXPORT randomnumber randomnumber ; on exit: ; a1 = low 32-bits of pseudo-random number ; a2 = high bit (if you want to know it) LDR ip, |seedpointer|
www.eeworm.com/read/350573/10731596

java test.java

/*---- 测试用例文件 ----*/ static final float PI = 3.141592654f; static final double ME = 1.9e-31; static final char[] map = {'\u661F', '\t', '*', '\206', ' ', '\''}; public class LexTest extends
www.eeworm.com/read/276181/10758424

c 大加数.c

/*这是一个大正数加法问题TC中应该完全可以运行。 */ #include #include #define HUN 10000 typedef struct node { int data; struct node *next; }NODE; NODE *insert(NODE *u,int num) /*声
www.eeworm.com/read/276181/10758437

c 大整数.c

#include #include #define HUN 10000 typedef struct node { int data; struct node *next; }NODE; //定义链表结构 NODE *insert(u,num)//在u节点之后插入一个新的NODE,其值为NUM NODE *u; int num;
www.eeworm.com/read/349903/10785491

mcs arm.mcs

; ; ARM Macros file ; ; Interleaved Version ; ; Triple register is R4|R3|R2 ; MUL_START. Initialise registers. Make R5 and R6 point to multipliers a ; and b. R7 points at result c. ; Initial
www.eeworm.com/read/349903/10785842

mcs sparc32.mcs

; ; 32-bit SPARC v8 version. Don't forget the delay slot! ; ; Sorry about all the %'s! Each % must be input here as %% ; Triple register is %l2|%l1|%l0 ; MUL_START. Initialise registers. Make %o0
www.eeworm.com/read/349903/10786109

mcs sparc64.mcs

; ; 64-bit SPARC V9 version. Don't forget the delay slot! ; ; Sorry about all the %'s! Each % must be input here as %% ; Triple register is %l1|%l0 (Bottom 32 bits of l0 and all of l1) ; MUL_STAR
www.eeworm.com/read/419655/10848004

s random.s

; Random number generator ; ; This uses a 33-bit feedback shift register to generate a pseudo-randomly ; ordered sequence of numbers which repeats in a cycle of length 2^33 - 1 ; NOTE: randomseed
www.eeworm.com/read/418423/10947012

txt shujujiegoushixi.txt

#include #include #include #include typedef int DataType; //------------------ /*定义节点*/ typedef struct Node { int data; struct Node* prior; struc