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 Ę

Systems Architecture
7th Edition
ISBN:9781305080195
Author:Stephen D. Burd
Publisher:Stephen D. Burd
Chapter10: Application Development
Section: Chapter Questions
Problem 9VE
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.
Recommended textbooks for you
Systems Architecture
Systems Architecture
Computer Science
ISBN:
9781305080195
Author:
Stephen D. Burd
Publisher:
Cengage Learning
LINUX+ AND LPIC-1 GDE.TO LINUX CERTIF.
LINUX+ AND LPIC-1 GDE.TO LINUX CERTIF.
Computer Science
ISBN:
9781337569798
Author:
ECKERT
Publisher:
CENGAGE L
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage
COMPREHENSIVE MICROSOFT OFFICE 365 EXCE
COMPREHENSIVE MICROSOFT OFFICE 365 EXCE
Computer Science
ISBN:
9780357392676
Author:
FREUND, Steven
Publisher:
CENGAGE L
Np Ms Office 365/Excel 2016 I Ntermed
Np Ms Office 365/Excel 2016 I Ntermed
Computer Science
ISBN:
9781337508841
Author:
Carey
Publisher:
Cengage
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781305480537
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT