关于return 和 while 的用法
麻烦告诉我下return和while的用法,就是return 1那些我不太懂,还有就是while(1)或者其他数字时
回复 2楼 韶志
请问 return -1 和return 0都是结束么#include <stdio.h>
#include <stdlib.h>
int f(int n)
{
if(n>1)
{
return f(n-1)*n;
}
else
{
return 1;
}
}
int main()
{
int n;
printf("please intput a number:");
scanf("%d",&n);
printf("%d\n",f(n));
system("PAUSE");
return 0;
}
请问 这个递归中,return 1是不是结束f函数? return f(n-1)*n 是不是返回f函数开头?