递归函数2

48 阅读1分钟
object scala4 {
def f(n:Int):Int = {

}

  def main(args: Array[String]): Unit = {
      val rst = f(4)
      println(rst)
    }
}