Answered step by step
Verified Expert Solution
Link Copied!

Question

00
1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions