代码搜索:recursion
找到约 958 项符合「recursion」的源代码
代码结果 958
www.eeworm.com/read/162614/5520513
c recursion.c
// { dg-do assemble }
const double M_PI=3.14159265358979323846;
template
inline double SineSeries()
{
const double x=I*2*M_PI/N;
const bool go=K+1!=J;
return 1.0-x*x/
www.eeworm.com/read/340665/3274507
c recursion.c
// Build don't link:
const double M_PI=3.14159265358979323846;
template
inline double SineSeries()
{
const double x=I*2*M_PI/N;
const bool go=K+1!=J;
return 1.0-x*x/(2
www.eeworm.com/read/339658/3296303
c recursion.c
/* 递归法将整数转换成字符 */
# include
void convert(int n)
{
int i;
if((i=n/10) != 0)
convert(i);
putchar(n%10+'0');
}
void main()
{
int number;
printf("输入整数:");
scanf("%d", &n
www.eeworm.com/read/334226/3370505
exp recursion.exp
set test recursion-1
set prog_output "ans = 120"
do_test recursion-1.m
set test recursion-2
set prog_output "ans = 120"
do_test recursion-2.m
www.eeworm.com/read/288165/4009437
c recursion.c
/* 递归法将整数转换成字符 */
# include
void convert(int n)
{
int i;
if((i=n/10) != 0)
convert(i);
putchar(n%10+'0');
}
void main()
{
int number;
printf("输入整数:");
scanf("%d", &n
www.eeworm.com/read/274119/4188933
c recursion.c
/* 递归法将整数转换成字符 */
# include
void convert(int n)
{
int i;
if((i=n/10) != 0)
convert(i);
putchar(n%10+'0');
}
void main()
{
int number;
printf("输入整数:");
scanf("%d", &n
www.eeworm.com/read/440906/1776139
c recursion.c
// Build don't link:
const double M_PI=3.14159265358979323846;
template
inline double SineSeries()
{
const double x=I*2*M_PI/N;
const bool go=K+1!=J;
return 1.0-x*x/(2
www.eeworm.com/read/432926/1886138
pde recursion.pde
/**
* Recursion.
*
* A demonstration of recursion, which means functions call themselves.
* Notice how the drawCircle() function calls itself at the end of its block.
* It continues to do thi
www.eeworm.com/read/420998/2058362
idl recursion.idl
/* Recursive struct */
struct S {
string name;
sequence left;
sequence right;
};
/* Nested recursive struct */
struct S2 {
struct S3 {
sequence c;
} s;
};
/* Nested recu