本帖最后由 郑丹丹1990 于 2013-4-25 08:22 编辑
- static void GetRandomNumber(out int[] counts, out List<int> intArray)
- {
- Random ran = new Random();
- int i = 0;
- while (i <= 100) {
- //产生随机数
- int num = ran.Next(0, 6);
- intArray.Add(num);
- //统计出现次数
- counts[num - 1]++;
- i++;
- }
-
- }
复制代码 错误 1 使用了未赋值的 out 参数“intArray” E:\Visual c#2008核心编程\exam\test10\Program.cs 32 17 test10
错误 4 控制离开当前方法之前必须对 out 参数“intArray”赋值 E:\Visual c#2008核心编程\exam\test10\Program.cs 25 21 test10
|