Couple more C# projects completed

Managed to complete a couple more C# projects.

Made an application to do grading on a scale of 0 - 100 and grade them to a scale of A, B, C, D, E, F.
grading.PNG

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
if (grade < 50)
{
label3.Text = ("F".ToString());

label3.Visible = true;
}
else if (grade >= 51 && grade <= 60)
{
label3.Text = ("D".ToString());

label3.Visible = true;
}
else if (grade >= 61 && grade <= 70)
{
label3.Text = ("C".ToString());

label3.Visible = true;
}
else if (grade >= 71 && grade < 80)
{
label3.Text = ("B".ToString());

label3.Visible = true;
}
else if (grade > 80 && grade <= 101)
{
label3.Text = ("A".ToString());
label3.Visible = true;
}


else label3.Visible = true;

Made another one that works out the average grade of 4 marks.
Average Grade.PNG

Based on your age, it will tell you how much a ticket will cost.
ticket-price.PNG