Ejemplo n.º 1
0
 public int DetermineAverageExcludingLowest(int temp1, int temp2, int temp3, int temp4, int temp5, int temp6, int temp7)
 {
     currentTemps = new DayOfWeekTemps(temp1, temp2, temp3, temp4, temp5, temp6, temp7);
     return(currentTemps.GetAveWithoutLowest());
 }
Ejemplo n.º 2
0
 public int DetermineHighest(int temp1, int temp2, int temp3, int temp4, int temp5, int temp6, int temp7)
 {
     currentTemps = new DayOfWeekTemps(temp1, temp2, temp3, temp4, temp5, temp6, temp7);
     return(currentTemps.GetHighestTemp());
 }
Ejemplo n.º 3
0
 public int DetermineAverage(int temp1, int temp2, int temp3, int temp4, int temp5, int temp6, int temp7)
 {
     currentTemps = new DayOfWeekTemps(temp1, temp2, temp3, temp4, temp5, temp6, temp7);
     return(currentTemps.GetAverageTemp());
 }
Ejemplo n.º 4
0
 public int DetermineLowest(int temp1, int temp2, int temp3, int temp4, int temp5, int temp6, int temp7)
 {
     currentTemps = new DayOfWeekTemps(temp1, temp2, temp3, temp4, temp5, temp6, temp7);
     return(currentTemps.GetLowestTemp());
     // return weeksTemps[0];
 }