ZazoTazo

Lab3-2

Nov 11th, 2020
271
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.91 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Globalization;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7.  
  8. namespace Project_2
  9. {
  10.     class Program
  11.     {
  12.         static void Main(string[] args)
  13.         {
  14.             int[,] array = new int[3,5];
  15.             int r = 0, s = 1, num;
  16.             int[] sum = new int[3];
  17.             float[] average = new float[4];
  18.             Console.WriteLine("Enter Grades");
  19.             for (int i = 0; i < 3; i++){
  20.                 for (int j = 0; j < 5; j++)
  21.                 {
  22.                     if((i == r ) && (j == 0)){
  23.                         array[i, j] = s;
  24.                         r++;
  25.                         s++;
  26.                     }
  27.                     else {
  28.                         num = int.Parse(Console.ReadLine());
  29.                         array[i, j] = num;
  30.                         sum[i] += num;
  31.                     }
  32.                 }
  33.             }
  34.  
  35.             for (int i = 1; i < 5; i++)
  36.             {
  37.                 for (int j = 0; j < 3; j++)
  38.                 {
  39.                     average[i-1] += array[j, i];
  40.                 }
  41.                 average[i - 1] /= 4;
  42.             }
  43.  
  44.             for (int i = 0; i < 3; i++)
  45.             {
  46.                 Console.Write("\n");
  47.                 for (int j = 0; j < 5; j++)
  48.                 {
  49.                     Console.Write("{0}\t", array[i, j]);
  50.                 }
  51.                 Console.Write("\n\n");
  52.             }
  53.            
  54.             for(int i = 0; i < 3; i++)
  55.             {
  56.                 Console.WriteLine("Sum of student {0} = {1}", i+1, sum[i]);
  57.             }
  58.             for(int i= 0; i < 4; i++)
  59.             {
  60.                 Console.WriteLine("Average of course {0} = {1}", i+1, average[i]);
  61.             }
  62.  
  63.             //Console.WriteLine("Sum = {0}\nAverage = {1}", sum, average);
  64.  
  65.             Console.ReadLine();
  66.         }
  67.     }
  68. }
  69.  
Add Comment
Please, Sign In to add comment