![]() |
#2
lockhawk2008-10-31 18:46
|
int func(int i,int n)
{
return (i<n && printf("%d\n",i)) && !func(i+1,n)
|| printf("%d\n",i);
}
这函数怎么来解释?