摘要: public static int Foo(int i) { if (i < 3) { return 1; } else { return Foo(i - 1) + Foo(i - 2); } } static void Main(string[] args) { Console.WriteLine 阅读全文
posted @ 2017-08-05 18:33 孤身付诸东流 阅读(337) 评论(0) 推荐(0)