Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

add a function/method Sum, that takes two parameters and returns a sum. Show how to CALL this method and get a sum out of it.

add a function/method Sum, that takes two parameters and returns a sum. Show how to CALL this method and get a sum out of it. Please use pseudocode or Java to do that.

import java.util.Scanner; public class Methods2 { public static double average(double p1, double p2) { double ave; ave=(p1+p2)/2; return ave; }//end of average public static void main(String [] arg) { System.out.printf(" Hello from main"); Scanner keyboard=new Scanner(System.in); double num1, num2; System.out.printf(" Please enter number one:"); num1=keyboard.nextDouble(); System.out.printf(" Please enter number two:"); num2=keyboard.nextDouble(); double result; // the average is called // the return value is assigned to "result" result=average(num1, num2); System.out.printf(" The result is %f", result); }//end of main }//end of Methods2

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

Recommended Textbook for

Object Databases The Essentials

Authors: Mary E. S. Loomis

1st Edition

020156341X, 978-0201563412

More Books

Students also viewed these Databases questions