代码搜索:factor

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

代码结果 6,651
www.eeworm.com/read/205100/15326534

txt 错误检查例.txt

{给出一个错误的程序,测试是否能够检查出来, 并给出错误 提示信息} program _error var integer s; integer t; procedure factor(intaeger n;var integer m); var integer w; begin if n=0 then m:=1 else factor(n-1,w);
www.eeworm.com/read/205098/15326669

txt factorial.txt

{递归调用测试} {功能:对于输入n,输出n的阶乘} program sd var integer s; integer t; procedure factor(integer n;var integer m); var integer w; begin if n=0 then m:=1 else factor(n-1,w); m:=n*w fi en
www.eeworm.com/read/205098/15326683

txt 错误检查例.txt

{给出一个错误的程序,测试是否能够检查出来, 并给出错误 提示信息} program _error var integer s; integer t; procedure factor(intaeger n;var integer m); var integer w; begin if n=0 then m:=1 else factor(n-1,w);
www.eeworm.com/read/203217/15363858

java ktablenoscrollmodel.java

/* * Created on 16.10.2005 * * */ package de.kupzog.ktable; /** * Table model that implements columnwidths based on weights, always showing all * columns and thus preventing H_SCROL
www.eeworm.com/read/111505/15511431

h int.h

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

par singlevarmin2.par

[Integers] Problem Code=7 Population Size=20 Number of Genes=9 Map Order=0 Def Order=0 GA Type=1 MinMax Type=2 Crossover Type=1 Mutation Type=1 Selection Type=1 Inversion Type=1 Stagnation
www.eeworm.com/read/109462/15557256

par multivarmin1.par

[Integers] Problem Code=8 Population Size=20 Number of Genes=4 Map Order=0 Def Order=0 GA Type=1 MinMax Type=2 Crossover Type=1 Mutation Type=1 Selection Type=1 Inversion Type=1 Stagnation
www.eeworm.com/read/109462/15557267

par singlevarmin1.par

[Integers] Problem Code=5 Population Size=20 Number of Genes=9 Map Order=0 Def Order=0 GA Type=1 MinMax Type=2 Crossover Type=1 Mutation Type=1 Selection Type=1 Inversion Type=1 Stagnation
www.eeworm.com/read/108584/15583980

c aa_hiresantialiasing.c

/* ********************************************************************************************************* * uC/GUI * Universal
www.eeworm.com/read/107558/15605016

atg pretty.atg

/********************************************************** ** PRETTY.ATG ** Coco/R C Taste Pretty Printer Example. ** Adapted to C++ by Frankie Arzu ** from Moessenb