int power(int n)/* 递归函数 */
{
if(n==0) return 1;
else return 2*power(n-1);
}
void main( )
{printf("%d\n", power(5));}