174k views
1 vote
How to write a java program that asks the user for grades of students. Once the user enters 0 (zero), the program should print the largest of the marks of the students.

User Grmihel
by
7.5k points

1 Answer

2 votes

Answer:

import java.util.Scanner;

public class GradeProgram {

public static void main(String[] args) {

Scanner sc = new Scanner(System.in);

System.out.println("Please enter the student grades: ");

int grade = sc.nextInt();

int largestGrade = 0;

while (grade != 0) {

if (grade > largestGrade) {

largestGrade = grade;

}

grade = sc.nextInt();

}

System.out.println("The largest grade is: " + largestGrade);

}

}

Step-by-step explanation:

User TnJed
by
7.1k points