对,recursive,an example

来源: 2006-08-01 09:27:09 [旧帖] [给我悄悄话] 本文已被阅读:

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

)