using System;
class AverageofScore
{
public static void Main()
{
int[,] student_score=new int [4,5];
int temp;
for(int i=0;i<=3;i++)
{
temp=0;
for(int j=0;j<=4;j++)
{
Console.WriteLine ("请输入第{0}个学生的第{1}门功课:",i+1,j+1);
student_score[i,j]=int.Parse (Console.ReadLine ());
temp+=student_score[i,j];
}
Console.WriteLine ("This student‘s average of score is"+temp/5);
}
}
}
求平均成绩使用二维数组(网上找的,仅自用,非原创)
Posted v123ve
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了求平均成绩使用二维数组(网上找的,仅自用,非原创)相关的知识,希望对你有一定的参考价值。
以上是关于求平均成绩使用二维数组(网上找的,仅自用,非原创)的主要内容,如果未能解决你的问题,请参考以下文章