question Facts:

question

Facts: ● Test average is worth 40% of final grade ● Lab average is worth 10% of final grade ● Homework average is worth 50% of final grade Input Your solution must take in three numerical inputs (floating point) with a range from 0.0 to any positive number. The first input represents the tests average. The second input represents the homework average. The third input represents the lab average. Output The output should display the student’s final average as a numerical score (floating point).

import java.util.Scanner;

public class StudentGrader {

  public static void main(String[] args) {