Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

instead of using - 1 as sentinel , use Yes or No to continue with grades : import java.util.Scanner; public class Loops { public static

instead of using -1 as sentinel, use Yes or No to continue with grades : import java.util.Scanner;
public class Loops {
public static void main(String[] args){
// TODO Auto-generated method stub
//participation problem for week 3
//instead of using -1 as sentinel
//use yes or no to continue with grades
int numStudents =0;
System.out.println("Please enter the grade of the first student: ");
Scanner inp = new Scanner( System.in);
double grade = inp.nextDouble();
double sumGrades =0.0;
while( grade !=-1){
sumGrades += grade;
numStudents++;
System.out.println("Keep entering grades when you are done enter -1");
System.out.println("Please enter the grade of the next student: ");
inp = new Scanner( System.in);
grade = inp.nextDouble();
}
if( numStudents !=0)
{
double average = sumGrades/numStudents;
System.out.println( "Average grade of "+ numStudents +" students is "+ average);
}
else
System.out.println("Number of students is zero and cannot calculate an average.");
}
}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

The Temple Of Django Database Performance

Authors: Andrew Brookins

1st Edition

1734303700, 978-1734303704

More Books

Students also viewed these Databases questions

Question

7. Identify six intercultural communication dialectics.

Answered: 1 week ago