代码搜索:five

找到约 3,092 项符合「five」的源代码

代码结果 3,092
www.eeworm.com/read/333254/12693352

cpp block.cpp

// block.cpp -- use a block statement #include int main() { using namespace std; cout
www.eeworm.com/read/246404/12728272

pas ac1011.pas

program tju1011; const maxn=24999; res:array[1..4,0..3]of byte=((2,6,8,4),(4,2,6,8),(6,8,4,2),(8,4,2,6)); var a:array[1..maxn]of longint; i,x,five:word; begin a[1]:=1; for i:=2 to
www.eeworm.com/read/246404/12728958

pas ac1011.pas

program tju1011; const maxn=24999; res:array[1..4,0..3]of byte=((2,6,8,4),(4,2,6,8),(6,8,4,2),(8,4,2,6)); var a:array[1..maxn]of longint; i,x,five:word; begin a[1]:=1; for i:=2 to
www.eeworm.com/read/244937/12830961

m ip_04_10.m

% MATLAB script for Illustrative Problem 4.10. clear echo on a=randn(1,500); n=64; [sqnr,a_quan,code]=u_pcm(a,64); pause % Press a key to see the SQNR. sqnr pause % Press a key to see the firs
www.eeworm.com/read/243168/12957846

asm sumfunc.asm

;SUMFUNC.ASM Assembly function to find n+(n-1)+...+1 .def _sumfunc ;function called from C _sumfunc: MV .L1 A4,A1 ;setup n as loop counter SUB .S1 A1,1,A1 ;decrement n LOO
www.eeworm.com/read/329002/12990181

txt test3_2a.txt

#include int main(void) { int ending =100005130; int five =5; printf(“five=%d;ending=%d\n”,five,ending); return 0; }
www.eeworm.com/read/329002/12990191

txt test3_2.txt

#include int main(void) { int counter; int ending; int temp; int five; for(counter=0;counter
www.eeworm.com/read/329002/12990447

txt test3_2a.txt

#include int main(void) { int ending =100005130; int five =5; printf(“five=%d;ending=%d\n”,five,ending); return 0; }
www.eeworm.com/read/329002/12990450

txt test3_2.txt

#include int main(void) { int counter; int ending; int temp; int five; for(counter=0;counter
www.eeworm.com/read/138758/13216793

java utilities.java

//: c11:Utilities.java // Simple demonstrations of the Collections utilities. // From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002 // www.BruceEckel.com. See copyright notice in CopyRight.txt.