2016年11月16日

摘要: int[] a = new int[] { 4, 8, 23, 12, 6, 28, 46, 9, 78, 54, 0 }; int b; for (int i = 0; i < a.Length; i++) { for (int j = i + 1; j < a.Length; j++) { if 阅读全文
posted @ 2016-11-16 16:03 二哈的虹虹 阅读(110) 评论(0) 推荐(0)
 
摘要: static void Main(string[] args) { Console.Write("输入想求的斐波那契数列项数:"); int n = Convert.ToInt32(Console.ReadLine()); //递归实现 Console.WriteLine("斐波那契数列数列递归算出 阅读全文
posted @ 2016-11-16 15:57 二哈的虹虹 阅读(111) 评论(0) 推荐(0)