Advertisement
mmayoub

Ex04P028, HoursTable.cs

Nov 18th, 2021
1,029
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.97 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4.  
  5. namespace ex04p28
  6. {
  7.     class HoursTable
  8.     {
  9.         private Course[,] table;
  10.  
  11.  
  12.         public string getTeacherNo(string x)
  13.         {
  14.             for (int d = 0; d < table.GetLength(0); d++)
  15.             {
  16.                 for (int h = 0; h < table.GetLength(1); h++)
  17.                 {
  18.                     if (table[d, h].getCourseNo() == x)
  19.                     {
  20.                         return table[d, h].getTeacherNo();
  21.                     }
  22.                 }
  23.  
  24.             }
  25.  
  26.             return "";
  27.         }
  28.  
  29.         public void printStudentsId(String teacherNo, int day)
  30.         {
  31.             for (int h = 0; h < table.GetLength(1); h++)
  32.             {
  33.                 if (table[day, h].getTeacherNo() == teacherNo)
  34.                 {
  35.                     // print student id's
  36.                     table[day, h].printStudents();
  37.                 }
  38.             }
  39.         }
  40.  
  41.     }
  42. }
  43.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement