代码搜索:factor
找到约 6,651 项符合「factor」的源代码
代码结果 6,651
www.eeworm.com/read/218384/14923091
cpp parser.cpp
#include "global.h"
int lexan();
void expr();
void term();
void factor();
void match(int t);
void emit(int,int tval);
void error(char *m);
extern int tokenval;
int lookahead;
void p
www.eeworm.com/read/217949/14942847
m fig5_20.m
%
% This routine generates graphs of the loss factor and
% insertion loss of the lowpass Chebyshev filters
% of order 1 through 4.
%
% Copyright (c) 1999 by P.Bretchko and R.Ludwig
%
www.eeworm.com/read/116992/14945273
cpp powerchart.cpp
#include
#include
double realintegrate(double q1,double q0, double x1,double x0,double omiga,double deltl);
double imagintegrate(double q1,double q0, double x1,double x0,double
www.eeworm.com/read/116477/14968705
cpp 14-1.cpp
#include
#include
void main()
{
int n;
unsigned long factor=1;
coutn;
for(int i=n;i>=1;i--)
factor*=i;
long ans(n>0?factor:-1);
www.eeworm.com/read/116477/14968742
cpp 2-2.cpp
#include
main()
{
int n;
unsigned long factor=1;
coutn;
for(int i=n;i>1;i--)
factor=factor*i;
cout
www.eeworm.com/read/116265/14981685
acc spec.acc
%token NUMBER;
expression :
term { printf("%d\n", n); }
;
term :
term '+' factor { *n = x+y; }
| term '-' factor { *n = x-y; }
| factor
;
factor :
factor '*' primar
www.eeworm.com/read/116265/14981753
acc spec.acc
%token NUMBER;
expression :
term { printf("%d\n", n); }
;
term :
term '+' factor { *n = x+y; }
| term '-' factor { *n = x-y; }
| factor
;
factor :
factor '*' primar
www.eeworm.com/read/217040/14981957
dem ftest.dem
PROGRAM d13r7(input,output);
(* driver for routine FTEST *)
CONST
npts=1000; (* npts must be > mpts for FTEST *)
mpts=500;
eps=0.04;
nval=10;
TYPE
gln1array = ARRAY [1..npts]
www.eeworm.com/read/116214/14982612
atg pretty.atg
/**********************************************************
** PRETTY.ATG
** Coco/R C Taste Pretty Printer Example.
** Adapted to C++ by Frankie Arzu
** from Moessenb
www.eeworm.com/read/116214/14982719
atg pretty.atg
/***********************************************************
** PRETTY.ATG
** Coco/R C++ Taste Pretty-printer example.
** Adapted to C++ by Frankie Arzu
** from Moess