對,recursive,an example

來源: 2006-08-01 09:27:09 [舊帖] [給我悄悄話] 本文已被閱讀:

void dumpcall(int a)
(
if (a=0) { return;}
}
else dumpcall(a-1)

)