关于岑参数组
程序代码:
using System; using System.Collections.Generic; using System.Text; namespace yhsj { class Program { static void Main(string[] args) { int i, j; int[][] yhsj = new int[5][]; /*for (i = 0; i < 5; i++) { yhsj[i] = (5 - i); }*/这地方怎么输入呀 for (i = 0; i < 5; i++) { yhsj[1][0] = 1; yhsj[i][i] = 1; } for (i = 2; i < 5; i++) { for (j = 1; j < i; j++) { yhsj[i][j] = yhsj[i - 1][j - 1] + yhsj[i - 1][j]; } } for (i = 0; i < 5; i++) { for (j = 0; j <= i; j++) { Console.Write("{0,-5}",yhsj[i][j]); } Console.WriteLine(); } } } }实现的是杨辉三角,那地方怎么输入了。在书上也找不到岑参数组,有会的帮忙解答下。谢谢了。