Write pseudocode that will a.) initialize an array with 5 values and declare a second empty array of the same size. b.) copy the contents of the first array into the second array. (Hint: use a loop.) Java
Write pseudocode that will a.) initialize an array with 5 values and declare a second empty array of the same size. b.) copy the contents of the first array into the second array. (Hint: use a loop.)
Java
1 public class FinalGrade
2 {
3 public static void main(String args[])
4 {
5 //variable declarations and initialization
6 String studentName = "Nicholas Simoneaux";
7 final double QUIZ_PERCENTAGE = 0.5;
8 final double TEST_PERCENTAGE = 0.5;
9
10 double quizOne = 98.5;
11 double quizTwo = 77.0;
12 double quizAverage;
13 double testOne = 85.0;
14 double testTwo = 67.0;
15 double testAverage;
16 double extraCredit = 10.0;
17 double finalGrade;
18
19 //calculations
20 quizAverage = quizOne + quizTwo / 2;
21 testAverage = testOne + testTwo / 2;
22
23 finalGrade = (quizAverage * QUIZ_PERCENTAGE) + (testAverage * TEST_PERCENTAGE) + extraCredit;
24
25 //output
26 System.out.println("Student Name: " + studentName);
27 System.out.println("Quiz Average: " + quizAverage);
28 System.out.println("Test Average: " + testAverage);
29 System.out.println("Final Grade: " + finalGrade);
30
31 }
32 }
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 1 images