int abc(...)
{
if(...) //遞歸終止條件
{ return abc(...); }
return 0;
}
而遞歸是重復壹組指令,不斷地根據變量的舊值推出新值,如:
for(; ; ;) //叠代終止條件
a = b + c;
b = a;
c = a;