标签:io sp bs amp nbsp return ca 函数 print
#include <stdio.h>
int main ()
{
int number(int c);
int n;
scanf("%d",&n);
printf("%d\n",number(n));
return 0;
}
int number(int c)
{
int a,b=1;
while(c>1)
{
a=(b+1)*2;
b=a;
c--;
}
return(a);
}
标签:io sp bs amp nbsp return ca 函数 print
原文地址:http://www.cnblogs.com/szz-55555/p/4117092.html