Main.cs
usingSystem;classProgram {-
publicstaticintMain() { -
decimal[,] ara =newdecimal[2, 3] { { 1, 3, 5 }, { 10, 20, 30 } }; -
decimalavg = 0.0m; -
for(inti=0; i<2; i++) { -
for(intj=0; j<3; j++) { -
avg+=ara[i, j]; -
} -
} -
avg/=ara.Length; -
Console.WriteLine(avg); -
Console.ReadKey(); -
return0; -
} }
usingSystem;classProgram {-
publicstaticintMain() { -
decimal[,] ara =newdecimal[2, 3] { { 1, 3, 5 }, { 10, 20, 30 } }; -
decimalavg = 0.0m; -
for(inti=0; i<2; i++) { -
for(intj=0; j<3; j++) { -
avg+=ara[i, j]; -
} -
} -
avg/=ara.Length; -
Console.WriteLine(avg); -
Console.ReadKey(); -
return0; -
} }
11,5