Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

import java.util.*; /** * Code for Problem 1 of HW2 * @author */ public class ArraySum { /** Gets the sum of the numbers in

image text in transcribed

import java.util.*;

/**

* Code for Problem 1 of HW2

* @author

*/

public class ArraySum {

/**

Gets the sum of the numbers in "dataset".

@return sum of the numbers

*/

public int getSum(ArrayList dataset) {

int x = 0;

for(int i : dataset ){

x = x + i;

}

return x;

}

/**

Gets the sum of the positive numbers in "dataset".

@return sum of the positive numbers

*/

public int getSumPositive(ArrayList dataset) {

int x = 0;

for(int i : dataset ){

if(i > 0 )

x = x + i;

}

return x;

}

/**

Gets the maximum value in the array list "dataset".

@return maximum value of "dataset"

*/

public int getMaximum(ArrayList dataset)

{

int x = 0;

for(int i : dataset ){

if(i > x)

x = i;

}

return x;

}

}

Error: Main method not found in class Main, please define the main method as: public static void main(String[] args), or a JavaFX application class must extend javafx.application. Application

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored 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

Question

What aspects would it be impossible to capture?

Answered: 1 week ago

Question

Enhance your words with effective presentation aids

Answered: 1 week ago