jamshid -2 Junior Poster in Training

We have Homework , so i need your help , so please help me:

Write a program which calculates course(lessons) grades of students according to given midterm and final exam.

There are 4 different courses:
1 D1 (3 Credits)
2 D2 (4 Credits)
3 D3 (3 Credits)
4 D4 (5 Credits)

The midterm and final exam will be taken from user. (0-100)
1 Midterm : 40%
2 Final : 60%

Convert the calculated result for the course. Use the table below.

[0-50) FF 0
[50-60) FD 0.5
[60-65) DD 1
[65-70) DC 1.5
[70-75) CC 2
[75-80) CB 2.5
[80-85) BB 3
[85-90) BA 3.5
[90-100] AA 4

Display the results for each lesson:

1. student
D1 72 CC 2
D2 66 DC 1.5
D3 81 BB 3
D4 55 FD 0.5

After displaying results calculate the average of the student. If it is below 1.8 warn user. Grade is multiplied by credit of course. When we add all them and divide it with total credits, we get the average.

Example calculation for student 1.

(3 * 2) + (4 * 1.5) + (3 * 3) + (5 * 0.5)

Your program should do these calculations for several students. Either take the number of students from user or ask if (s)he wants to continue each time.

Thanks alot, i tried alot and can write this with (label ) , but i want to use for or while or else....