摘要: 斐波那契数列的C#形式:public int Fibonacci(int n) { int f0 = 0; int f1 = 1; int f2 = 0; int t = 2; if (n 2){ for(int i=2; i < num... 阅读全文
posted @ 2018-08-08 10:45 长风- 阅读(4013) 评论(0) 推荐(2)