对,recursive,an example
来源:
newfaith
于
2006-08-01 09:27:09
[
旧帖
] [
给我悄悄话
] 本文已被阅读:次
void dumpcall(int a)
(
if (a=0) { return;}
}
else dumpcall(a-1)
)