using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ArrayExample { class Program { static void Main() { //改程序的功能是随机产生7个数,每个数都在1-36之间,要求每个数都不同 int[] a = new int[7]; //定义一个一维数组 Random ran = new Random(); for (int i = 0; i < a.Length; i++) { one_num: //goto标志 a[i] = (int)ran.Next(36) + 1; //随机函数的使用 for (int j = 0; j < i; j++) { if (a[i] == a[j]) goto one_num; } } foreach (int n in a) { Console.WriteLine("{0} ", n); } } } }