public static void Main()
Console.WriteLine("How many students are in the group? : ");
students = int.Parse(Console.ReadLine());
Console.WriteLine("Invalid amount of students!");
double[] scores = new double[students];
for (int i = 0; i < scores.Length; i++) {
Console.WriteLine("Enter students scores: ");
scores[i] = double.Parse(Console.ReadLine());
for (int x = 0; x < scores.Length; x++) {
percentage = (scores[x] / 64) * 100;
if (percentage >= 40 && percentage < 50) {
else if (percentage >= 50 && percentage < 60) {
else if (percentage >= 60 && percentage < 70) {
else if (percentage > 70) {
Console.WriteLine(x + grades + " - " + percentage);