CC#•Created by zǝɥɔsdɹoʇ on 2/21/2024 in #help cant figure out how to calculate averages
public static double grade(double testtotal2, int count)
{
double total = (testtotal2 + 999) / count;
Console.WriteLine("The average of the grades is {0:f1}", total);
return total;
}