×

Loading...

java, 递归算法. haha

function 讲故事(int i) {
从前有座山;
山上有座庙;
庙里有个和尚讲故事;
讲的啥;
讲故事(i++);
}

void main() {
讲故事(0);
}
Report