Computer Science, asked by leenatchandra9700, 11 months ago

Write a program to input two numbers and print the biggest numbers and the smallest number. (by using method function)

Answers

Answered by Bhav123456
0

Answer:

important java .until.*;

public class MaxMin

{

public static void main (String [] args)

{

Scanner.sc=new Scanner (System.in);

int a,b,c;

System.out.println("Enter first side:");

a=in.nextInt();

System.out.println("Enter second side:");

b=in.nextInt();

System.out.println("Enter third side:");

c=in.nextInt();

int MAX=Math.max a,(Math.max(b,c));

int MIN=Math.min a,(Math.min(b,c));

System.out.println("Greatest number:"+MAX);

System.out.println("Smallest number:"+MIN);

}

}

❆Sample input❆

87, 65, 34

❆Sample output❆

Greatest number:87

Smallest number:34

❆Detales about program❆

As told Math.min() and Math.max() function is used✓

program is written using scanner class

As told program is written using java language✓

❆ Additional information ❆

1)What is max function?

This function is used to find greatest number between two numbers.

2)What is min function?

This function is used to find smallest number between two numbers.

Explanation:

Similar questions