Loading

摘要: 一、利用闭包输出斐波那契数列 package main import "fmt" func Fibonacci() func() int { first := 1 second := 1 return func() int { temp := first + second first = secon 阅读全文
posted @ 2020-12-19 14:28 koktlzz 阅读(80) 评论(0) 推荐(0) 编辑