I have my code here and I am getting errors (I have also attached my code): " import java.util.Compiler; public class Test Score {          public static void main(String[] args) {       Scanner scan = new Scanner(System.in);       System.out.println("Ënter the first exam Score: ");       Double Score1 = scan.nextDouble();              System.out.println("Enter the second exam Score: ");       Double Score2 = scan.nextDouble();              System.out.println("Enter the third exam Score: ");       Double Score3 = scan.nextDouble();              System.out.println("Enter the fourth exam Score: ");       Double Score4 = scan.nextDouble();              System.out.println("Enter the fifth exam Score: ");       Double Score5 = scan.nextDouble();              Double total = Score1 + Score2 + Score3 + Score4 + Score5       Double average = total/5;              if (average >= 90) {         System.out.printf("your average was a: %f and recieved an A in this Class", average );       } else if (average >= 80) {         System.out.printf("your average was a: %f and recieved an B in this class", average );       } else if (average >= 70) {         System.out.printf("your average was a: %f and recieved an C in this class", average );       } else if (average >= 60) {         System.out.printf("your average was a: %f and recieved an D in this class", average );       } else {         System.out.printf("your average was a: %f and recieved an F in this class", average );                } }" What is wrong with my code? Also, how can I input this information: " Write a program that ask the user to enter a list of positive scores until the user enters a negative score to terminate the input.  You need to store these scores in an array.   You can assume the maximum number of scores the user may enter is 50.  However, you need to keep track of the actual number of scores entered.  Write 2 methods: 1. calculateAverage(): this method takes the list of scores and return the average score. 2. countPerfectScores(): this method takes the list of scores and return the number of perfect scores (100). The main program reads the input and calls these methods and print the results. Please make sure you write a comment line to document what your method does."

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

I have my code here and I am getting errors (I have also attached my code): "

import java.util.Compiler;

public class Test Score {
    
    public static void main(String[] args) {
      Scanner scan = new Scanner(System.in);
      System.out.println("Ënter the first exam Score: ");
      Double Score1 = scan.nextDouble();
      
      System.out.println("Enter the second exam Score: ");
      Double Score2 = scan.nextDouble();
      
      System.out.println("Enter the third exam Score: ");
      Double Score3 = scan.nextDouble();
      
      System.out.println("Enter the fourth exam Score: ");
      Double Score4 = scan.nextDouble();
      
      System.out.println("Enter the fifth exam Score: ");
      Double Score5 = scan.nextDouble();
      
      Double total = Score1 + Score2 + Score3 + Score4 + Score5
      Double average = total/5;
      
      if (average >= 90) {
        System.out.printf("your average was a: %f and recieved an A in this Class", average );
      } else if (average >= 80) {
        System.out.printf("your average was a: %f and recieved an B in this class", average );
      } else if (average >= 70) {
        System.out.printf("your average was a: %f and recieved an C in this class", average );
      } else if (average >= 60) {
        System.out.printf("your average was a: %f and recieved an D in this class", average );
      } else {
        System.out.printf("your average was a: %f and recieved an F in this class", average );
        
      }
}"

What is wrong with my code?

Also, how can I input this information: "

Write a program that ask the user to enter a list of positive scores until the user enters a negative score to terminate the input.  You need to store these scores in an array.   You can assume the maximum number of scores the user may enter is 50.  However, you need to keep track of the actual number of scores entered.  Write 2 methods:

1. calculateAverage(): this method takes the list of scores and return the average score.

2. countPerfectScores(): this method takes the list of scores and return the number of perfect scores (100).

The main program reads the input and calls these methods and print the results.

Please make sure you write a comment line to document what your method does."

Test.java
+
1. import java.util.Compiler;
public class Test Score {
8
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25-
26
27 ▾
28
29 ▾
30
31 ▾
32
33▾
34
35
36
37
public static void main(String[]args) {
Scanner scan= new Scanner(System.in);
System.out.println("Enter the first exam Score: ");
Double Score1 = scan.nextDouble();
System.out.println("Enter the second exam Score: ");
Double Score2 = scan.nextDouble();
System.out.println("Enter the third exam Score: ");
Double Score3 = scan.nextDouble();
System.out.println("Enter the fourth exam Score: ");
Double Score4 = scan.nextDouble();
System.out.println("Enter the fifth exam Score: ");
Double Score5 = scan.nextDouble();
Double total = Scorel + Score2+ Score3 + Score4 + Score5
Double average = total/5;
if (average >= 90) {
System.out.printf("your average was a: %f and recieved an A in this Class", average );
} else if (average >= 80) {
System.out.printf("your average was a: %f and recieved an B in this class", average );
} else if (average >= 70) {
System.out.printf("your average was a: %f and recieved an C in this class", average );
else if (average >=60) {
System.out.printf("your average was a: %f and recieved an D in this class", average );
System.out.printf("your average was a: %f and recieved an F in this class", average );
} else {
}
Test Score.java /
STDIN
Input for the program (Optional)
Output:
Program did not output anything!
NEW
JAVA V
RUN ▶
:
זי
Transcribed Image Text:Test.java + 1. import java.util.Compiler; public class Test Score { 8 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25- 26 27 ▾ 28 29 ▾ 30 31 ▾ 32 33▾ 34 35 36 37 public static void main(String[]args) { Scanner scan= new Scanner(System.in); System.out.println("Enter the first exam Score: "); Double Score1 = scan.nextDouble(); System.out.println("Enter the second exam Score: "); Double Score2 = scan.nextDouble(); System.out.println("Enter the third exam Score: "); Double Score3 = scan.nextDouble(); System.out.println("Enter the fourth exam Score: "); Double Score4 = scan.nextDouble(); System.out.println("Enter the fifth exam Score: "); Double Score5 = scan.nextDouble(); Double total = Scorel + Score2+ Score3 + Score4 + Score5 Double average = total/5; if (average >= 90) { System.out.printf("your average was a: %f and recieved an A in this Class", average ); } else if (average >= 80) { System.out.printf("your average was a: %f and recieved an B in this class", average ); } else if (average >= 70) { System.out.printf("your average was a: %f and recieved an C in this class", average ); else if (average >=60) { System.out.printf("your average was a: %f and recieved an D in this class", average ); System.out.printf("your average was a: %f and recieved an F in this class", average ); } else { } Test Score.java / STDIN Input for the program (Optional) Output: Program did not output anything! NEW JAVA V RUN ▶ : זי
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Random Class and its operations
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education