Im与阵列和方法合作。 Im正在撰写一部法律,计算一个阵列中用户输入的平均数字。 我先看了第一种方法,但VS告诉我,“并非所有法系途径都回升价值”。 当我用主(金)方法测试该代码时,该代码运转良好,但在我“GetValues”(GetValues)”方法中,该代码一度出现错误。
I read all other posts but they not quite make sense to me because of their specificity. I know this isn t too difficult but I m a beginner and trying to understand this myself.
我的方案尚未完成,以下法典只是我方案第一部分(方法)。 一旦GetValues()工作,这一想法就将采用另一种计算平均数的方法。 再说一遍,GetValues()应该抓住阵列。
Here s the code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace testscores
{
class Program
{
static void Main(string[] args)
{
}
private static int[] GetValues()
{
string inValue;
int[] score = new int[5];
int total = 0;
for (int i = 0; i < score.Length; i++)
{
Console.Write("Enter Score {0}: ", i + 1);
inValue = Console.ReadLine();
score[i] = Convert.ToInt32(inValue);
}
for (int i = 0; i < score.Length; i++)
{
total += score[i];
}
}
}
}