Question: I am trying to do this problem In Java and I am very confused with the command line portion could anyone please help (Using the

I am trying to do this problem In Java and I am very confused with the command line portion could anyone please help

(Using the Enhanced for Statement )

Write an application that uses an enhanced for statement to sum the double values passed by the command-line arguments . [Hint: Use the static method parseDouble of class Double to convert a String to a double value .]

Under is the code that needs to be modified to answer the question above.

public class Enhanced {

public static void main(String[] args) { int[] array = {87, 68, 94, 100, 83, 78, 85, 91, 76, 87}; int total = 0; for (int number : array) { total += number; } System.out.printf("Total of array elements: %d%n", total); } }

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!