代码搜索:factor

找到约 6,651 项符合「factor」的源代码

代码结果 6,651
www.eeworm.com/read/410432/11287516

c hotel.c

/* hotel.c -- hotel management functions */ #include #include "hotel.h" int menu(void) { int code, status; printf("\n%s%s\n", STARS, STARS); printf("Enter the number of
www.eeworm.com/read/264889/11296513

cpp 6_34.cpp

#include #include using namespace std; double *quadratic(double *factor) //返回指针类型 { static double result[2]; //语句1:设置静态属性用于保持数值 double delta; delta=factor[1]*factor[1]
www.eeworm.com/read/264889/11296631

cpp 6_38.cpp

#include #include using namespace std; unsigned long factor(int n) //阶乘函数 { if(n==0) return 1; return (n*factor(n-1));} int main(int argc, char *argv[]) //带命令行参数的main函数
www.eeworm.com/read/410191/11299267

cpp saratov114.cpp

/* Alfonso Alfonso Peterssen 4 - 3 - 2008 Saratov #114 "Telecasting station" */ #include #include #include #include using namespace std; const int M
www.eeworm.com/read/264721/11303712

h int.h

/************************************************************************ * * * Copyright (C) SEIKO EPSON CORP. 1999 * * * * File name: int.h * * This is interrupt
www.eeworm.com/read/405906/11455159

c parser.c

#include "global.h" int lookahead; parse() { int t; lookahead = lexan(); while (lookahead != DONE) { expr(); if(flag==0) //欲进行求值操作 { if(wflag!=1) //不含标志符的表达式
www.eeworm.com/read/405333/11465090

cpp sieve.cpp

//: C03:Sieve.cpp // From "Thinking in C++, 2nd Edition, Volume 2" // by Bruce Eckel & Chuck Allison, (c) 2003 MindView, Inc. // Available at www.BruceEckel.com. //{L} ../TestSuite/Test #include
www.eeworm.com/read/405217/11468652

m repeat.m

% REPEAT Upsample a vector by inserting repeated samples % % [y] = REPEAT (x,N) upsamples x by a factor N using repetition % function [Y] = repeat(x, N); Y = []; for i = 1:length(x) Y
www.eeworm.com/read/404153/11491035

asm example 3-36.asm

; Example 3 - 36. DIT Radix-2 FFT Implementation ASM Listing for the TMS320C64x DSP * ========================================================================= * *
www.eeworm.com/read/404153/11491043

asm example 3-19.asm

;Example 3 - 19. Complex DIF Radix-2 FFT Implementation ASM Listing for TMS320C62x * ========================================================================= * *