代码搜索:recursive
找到约 2,177 项符合「recursive」的源代码
代码结果 2,177
www.eeworm.com/read/328104/13046396
txt test5.txt
var x:real
function recursive (a:integer):integer;
begin
if a>600
begin
write("a=",a);
errSym := 5
end
else
begin
a := recursive(a*2)
end;
recursive := a
end;
begin
x :
www.eeworm.com/read/137548/13313110
cpp scoperes.cpp
//: C04:Scoperes.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Global scope resolution
int a;
www.eeworm.com/read/136879/13356250
cpp fig03_15.cpp
// Fig. 3.15: fig03_15.cpp
// Recursive fibonacci function
#include
long fibonacci( long );
int main()
{
long result, number;
cout
www.eeworm.com/read/136879/13356272
cpp fig03_14.cpp
// Fig. 3.14: fig03_14.cpp
// Recursive factorial function
#include
#include
unsigned long factorial( unsigned long );
int main()
{
for ( int i = 0; i
www.eeworm.com/read/307616/13718898
cpp soln5_1.cpp
// Soln5_1.cpp
#include
using std::cout;
using std::endl;
// Recursive factorial function
long fact(long n)
{
return n == 1L ? 1L : n*fact(n-1);
}
int main()
{
for(long v
www.eeworm.com/read/152726/5667109
java accessrule.java
/*************************************************************************
* *
* EJBCA: The OpenSource Certificate Authority
www.eeworm.com/read/144216/5752661
empty
#!/usr/bin/perl
# $RCSfile: empty,v $$Revision: 4.1 $$Date: 92/08/07 17:20:50 $
# This script empties a trashcan.
$recursive = shift if $ARGV[0] eq '-r';
@ARGV = '.' if $#ARGV < 0;
chop($pwd = `p
www.eeworm.com/read/139903/5795586
cpp scoperes.cpp
//: C04:Scoperes.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Global scope resolution
int a;
www.eeworm.com/read/136989/5830605
idl treebase.idl
// TreeBase.idl,v 1.1 2001/12/31 17:12:26 parsons Exp
// Forward declaration to make recursive construct.
valuetype BaseNode;
//@@ Dosn't work for now
//typedef sequence BaseNodeSeq;