递归函数2 EXAID 2025-10-15 48 阅读1分钟 object scala4 { def f(n:Int):Int = { } def main(args: Array[String]): Unit = { val rst = f(4) println(rst) } }