List of students' grades

Report a typo

You have a list of students' grades from your class. Please print the grades following the FIFO strategy.

Sample Input 1:

5.5 4.6 3.0 2.5 10.0 9.9 8.75

Sample Output 1:

5.5 4.6 3.0 2.5 10.0 9.9 8.75
Write a program in Kotlin
fun printGradesFIFO(grades: ArrayDeque<Double>) {
// make your code here
}
___

Create a free account to access the full topic