代码搜索:arithmetic

找到约 7,844 项符合「arithmetic」的源代码

代码结果 7,844
www.eeworm.com/read/147328/12564481

h trap.h

/* Trap type values */ #define RESADFLT 0 /* reserved addressing fault */ #define PRIVINFLT 1 /* privileged instruction fault */ #define BPTFLT 2 /* bpt instruction fault */ #define XFCFLT 3 /
www.eeworm.com/read/147328/12564495

m trap.m

# # Trap,type values # .set RESADFLT,0 # reserved addressing fault .set PRIVINFLT,1 # privileged instruction fault .set BPTFLT,2 # bpt instruction fault .set XFCFLT,3 # xfc instruction fault
www.eeworm.com/read/334652/12582565

java strategy.java

/** * The public interface to support varies arithmetic */ public interface Strategy { public void drawText(String s, int lineWidth, int lineCount); }
www.eeworm.com/read/334076/12642856

m mf.m

function out=mf(x,y) % MF Fuzzy arithmetics object constructor % OUT = MF(X, Y) returns a fuzzy arithmetics object. Fuzzy arithmetics % object overwrites MATLAB '+', '-', '*', and '/' operat
www.eeworm.com/read/146474/12644885

cce vmeter_18.cce

Warning[000] E:\My Documents\My Designs\Pic\Vmeter\Vmeter_18.c 58 : implicit conversion of float to integer Warning[000] E:\My Documents\My Designs\Pic\Vmeter\delay.h 37 : arithmetic overflow in cons
www.eeworm.com/read/146472/12645226

cce test.cce

Warning[000] E:\My Documents\My Designs\Pic\93C46\delay.h 37 : arithmetic overflow in constant expression
www.eeworm.com/read/238024/13911775

java math.java

interface Math { double PI=3.1415926; } class Arithmetic implements Math { double roundArea(double radius) { return PI*radius*radius; } } class Student { public static void
www.eeworm.com/read/134087/14008997

c dtftr.c

/* dtftr.c - N DTFT values over frequency range [wa, wb) */ #include /* complex arithmetic */ complex dtft(); /* DTFT at
www.eeworm.com/read/134087/14009146

c dtftr1.c

/* dtftr.c - N DTFT values over frequency range [wa, wb) */ #include /* complex arithmetic */ complex dtft(); /* DTFT at
www.eeworm.com/read/133648/14031394

java allops.java

//: c03:AllOps.java // From 'Thinking in Java, 2nd ed.' by Bruce Eckel // www.BruceEckel.com. See copyright notice in CopyRight.txt. // Tests all the operators on all the // primitive data types t