Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

5. Write a static method f(n) in the space provide, that returns O if n is even, and if n is odd, returns 1 or

image text in transcribed
image text in transcribed
5. Write a static method "f(n)" in the space provide, that returns O if n is even, and if n is odd, returns 1 or -1 according as n is greater than or less than 0. importjava.util.Scanner; public class Q_05 Your "f(n)" method: public static void main(String args[]) mana int n; Scanner input = new Scanner(System.in); System.out.print("Please enetrn: "); n=input.nextInt(); System.out.println(f(n)); "Method f(n)" 7. Write a static method "max" in the space provide, that returns the maximum value from 3 input integers. import java.util.Scanner; public class Q_08 Your "max" method: public static void main(String args) int x, y, z, maximum; Scanner scan = new Scanner(System.in); System.out.print("Enter x, y, z: "); x = scan.nextInt(); y = scan.nextInt(); z = scan.nextInt(); maximum = max(x, y, z); System.out.print("The max is:" + maximum); "Method max

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

Records And Database Management

Authors: Jeffrey R Stewart Ed D, Judith S Greene, Judith A Hickey

4th Edition

0070614741, 9780070614741

More Books

Students also viewed these Databases questions

Question

5. Understand how cultural values influence conflict behavior.

Answered: 1 week ago

Question

e. What do you know about your ethnic background?

Answered: 1 week ago