本文主要是介绍//程序分析五人年龄问题。,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
//程序//程序分析五人年龄问题。#include <stdio.h>
main ()
{printf("%d",age(5)
};
return 0;
}
age(n)
{int n;
int c;
if(n==1)
c=10;
else
c=age(n-1)+2;
return (c);
}
#include <stdio.h>
main ()
{printf("%d",age(5)
};
return 0;
}
age(n)
{int n;
int c;
if(n==1)
c=10;
else
c=age(n-1)+2;
return (c);
}
这篇关于//程序分析五人年龄问题。的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!