library > CS 226T: Java Programming home > 3.5: Arrays CHALLENGE ACTIVITY to search 3.5.3: Printing array elements with a for loop. Write a for loop to print all elements in courseGrades, following each element with a space (including the last). Print forwards, then backwards. End each loop with a newline. Ex: If courseGrades = {7, 9, 11, 10), print: 7 9 11 10 10 11 9 7 Hint: Use two for loops. Second loop starts with i= courseGrades.length - 1. (Notes) Note: These activities may test code with different test values. This activity will perform two tests, both with a 4-element array. See "How to Use zyBooks". Also note: If the submitted code tries to access an invalid array element, such as courseGrades[9] for a 4-element array, the test may generate strange results. Or the test may crash and report "Program end never reached", in which case the system doesn't print the test case that caused the reported message. 4227842543518.qx3zqy7 1 import java.util.Scanner; 2 3 public class CourseGradePrinter { 4 5 6 7 8 9 19 public static void main (String [] args) { Scanner scnr = new Scanner(System.in); final int NUM_VALS = 4; int [] courseGrades = new int [NUM_VALS]; int i; EzyBooks catalog for (i = 0; i < courseGrades.length: ++i) { +4²1 nagy tan O 8 O DID passed passed ? Help/FAQ Stacey Queen 55°F Mostly sunny @ 40 8:12 AM 8/28/2022 Ę

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
100%
CTU - Class X zy Section 3.5 x zy Section 3.1 x zy Section 2.9 x zy Section 3.3 x zy Section 2.1 x
← → CO
Dealertrack SA SecureAccess Wash...
learn.zybooks.com/zybook/CS226-2204A-03-2204A/chapter/3/section/5
Vision Menu - Login ec2019 F& Protective / F&I caf...
= zyBooks My library > CS 226T: Java Programming home > 3.5: Arrays
CHALLENGE
ACTIVITY
+
Type here to search
7 9 11 10
10 11 9 7
3.5.3: Printing array elements with a for loop.
Hint: Use two for loops. Second loop starts with i = courseGrades.length - 1. (Notes)
422784.2543518.qx3zqy7
Write a for loop to print all elements in courseGrades, following each element with a space (including the last). Print forwards, then
backwards. End each loop with a newline. Ex: If courseGrades = {7, 9, 11, 10), print:
1 import java.util.Scanner;
2
3 public class CourseGradePrinter {
4
5
6
7
5 000-
8
Note: These activities may test code with different test values. This activity will perform two tests, both with a 4-element array. See
"How to Use zyBooks".
9
Also note: If the submitted code tries to access an invalid array element, such as courseGrades[9] for a 4-element array, the test
may generate strange results. Or the test may crash and report "Program end never reached", in which case the system doesn't
print the test case that caused the reported message.
10
public static void main (String[] args) {
CTU Messe X zy Catalog
Scanner scnr = new Scanner(System.in);
final int NUM_VALS = 4;
int[] courseGrades = new int [NUM_VALS];
int i;
Extended Protectio....
for (i = 0; i < courseGrades.length: ++i) {
O
x b Success Cox | +
Q
8:
☆ ☐K Paused
LIBERTY SHIELD
EzyBooks catalog Help/FAQ Stacey Queen
RouteOne gm GlobalConnect
https://www.msn.co...
1 tast
passed
All tests
55°F Mostly sunny
0 X
4»)
8:12 AM
8/28/2022
⠀
7
Transcribed Image Text:CTU - Class X zy Section 3.5 x zy Section 3.1 x zy Section 2.9 x zy Section 3.3 x zy Section 2.1 x ← → CO Dealertrack SA SecureAccess Wash... learn.zybooks.com/zybook/CS226-2204A-03-2204A/chapter/3/section/5 Vision Menu - Login ec2019 F& Protective / F&I caf... = zyBooks My library > CS 226T: Java Programming home > 3.5: Arrays CHALLENGE ACTIVITY + Type here to search 7 9 11 10 10 11 9 7 3.5.3: Printing array elements with a for loop. Hint: Use two for loops. Second loop starts with i = courseGrades.length - 1. (Notes) 422784.2543518.qx3zqy7 Write a for loop to print all elements in courseGrades, following each element with a space (including the last). Print forwards, then backwards. End each loop with a newline. Ex: If courseGrades = {7, 9, 11, 10), print: 1 import java.util.Scanner; 2 3 public class CourseGradePrinter { 4 5 6 7 5 000- 8 Note: These activities may test code with different test values. This activity will perform two tests, both with a 4-element array. See "How to Use zyBooks". 9 Also note: If the submitted code tries to access an invalid array element, such as courseGrades[9] for a 4-element array, the test may generate strange results. Or the test may crash and report "Program end never reached", in which case the system doesn't print the test case that caused the reported message. 10 public static void main (String[] args) { CTU Messe X zy Catalog Scanner scnr = new Scanner(System.in); final int NUM_VALS = 4; int[] courseGrades = new int [NUM_VALS]; int i; Extended Protectio.... for (i = 0; i < courseGrades.length: ++i) { O x b Success Cox | + Q 8: ☆ ☐K Paused LIBERTY SHIELD EzyBooks catalog Help/FAQ Stacey Queen RouteOne gm GlobalConnect https://www.msn.co... 1 tast passed All tests 55°F Mostly sunny 0 X 4») 8:12 AM 8/28/2022 ⠀ 7
CTU - Class X zy Section 3.5 x zy Section 3.1 x zy Section 2.9 x zy Section 3.3 x zy Section 2.1 x
← → CO
Dealertrack SA SecureAccess Wash...
learn.zybooks.com/zybook/CS226-2204A-03-2204A/chapter/3/section/5
Vision Menu - Login ec2019 F& Protective / F&I caf...
= zyBooks My library > CS 226T: Java Programming home > 3.5: Arrays
CHALLENGE
ACTIVITY
+
Type here to search
7 9 11 10
10 11 9 7
3.5.3: Printing array elements with a for loop.
Hint: Use two for loops. Second loop starts with i = courseGrades.length - 1. (Notes)
422784.2543518.qx3zqy7
Write a for loop to print all elements in courseGrades, following each element with a space (including the last). Print forwards, then
backwards. End each loop with a newline. Ex: If courseGrades = {7, 9, 11, 10), print:
1 import java.util.Scanner;
2
3 public class CourseGradePrinter {
4
5
6
7
5 000-
8
Note: These activities may test code with different test values. This activity will perform two tests, both with a 4-element array. See
"How to Use zyBooks".
9
Also note: If the submitted code tries to access an invalid array element, such as courseGrades[9] for a 4-element array, the test
may generate strange results. Or the test may crash and report "Program end never reached", in which case the system doesn't
print the test case that caused the reported message.
10
public static void main (String[] args) {
CTU Messe X zy Catalog
Scanner scnr = new Scanner(System.in);
final int NUM_VALS = 4;
int[] courseGrades = new int [NUM_VALS];
int i;
Extended Protectio....
for (i = 0; i < courseGrades.length: ++i) {
O
x b Success Cox | +
Q
8:
☆ ☐K Paused
LIBERTY SHIELD
EzyBooks catalog Help/FAQ Stacey Queen
RouteOne gm GlobalConnect
https://www.msn.co...
1 tast
passed
All tests
55°F Mostly sunny
0 X
4»)
8:12 AM
8/28/2022
⠀
7
Transcribed Image Text:CTU - Class X zy Section 3.5 x zy Section 3.1 x zy Section 2.9 x zy Section 3.3 x zy Section 2.1 x ← → CO Dealertrack SA SecureAccess Wash... learn.zybooks.com/zybook/CS226-2204A-03-2204A/chapter/3/section/5 Vision Menu - Login ec2019 F& Protective / F&I caf... = zyBooks My library > CS 226T: Java Programming home > 3.5: Arrays CHALLENGE ACTIVITY + Type here to search 7 9 11 10 10 11 9 7 3.5.3: Printing array elements with a for loop. Hint: Use two for loops. Second loop starts with i = courseGrades.length - 1. (Notes) 422784.2543518.qx3zqy7 Write a for loop to print all elements in courseGrades, following each element with a space (including the last). Print forwards, then backwards. End each loop with a newline. Ex: If courseGrades = {7, 9, 11, 10), print: 1 import java.util.Scanner; 2 3 public class CourseGradePrinter { 4 5 6 7 5 000- 8 Note: These activities may test code with different test values. This activity will perform two tests, both with a 4-element array. See "How to Use zyBooks". 9 Also note: If the submitted code tries to access an invalid array element, such as courseGrades[9] for a 4-element array, the test may generate strange results. Or the test may crash and report "Program end never reached", in which case the system doesn't print the test case that caused the reported message. 10 public static void main (String[] args) { CTU Messe X zy Catalog Scanner scnr = new Scanner(System.in); final int NUM_VALS = 4; int[] courseGrades = new int [NUM_VALS]; int i; Extended Protectio.... for (i = 0; i < courseGrades.length: ++i) { O x b Success Cox | + Q 8: ☆ ☐K Paused LIBERTY SHIELD EzyBooks catalog Help/FAQ Stacey Queen RouteOne gm GlobalConnect https://www.msn.co... 1 tast passed All tests 55°F Mostly sunny 0 X 4») 8:12 AM 8/28/2022 ⠀ 7
Expert Solution
steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Array
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