200k views
4 votes
Write a java program to input two double type numbers and by using suitable mathematical functions print the maximum and minimum numbers out of the two numbers.


java \: me \: likhna \: ok



1 Answer

4 votes

Answer:

The program in Java is as follows:

import java.util.Scanner;

public class Main{

public static void main(String[] args) {

Scanner input = new Scanner(System.in);

double n1, n2;

n1 = input.nextDouble();

n2 = input.nextDouble();

double Max = Math.max(n1,n2);

double Min = Math.min(n1,n2);

System.out.println("Max: "+Max);

System.out.println("Min: "+Min); }}

Step-by-step explanation:

This declares the numbers

double n1, n2;

This gets input for n1

n1 = input.nextDouble();

This gets input for n2

n2 = input.nextDouble();

This gets the max of both using the max function

double Max = Math.max(n1,n2);

This gets the min of both using the min function

double Min = Math.min(n1,n2);

This prints the max

System.out.println("Max: "+Max);

This prints the min

System.out.println("Min: "+Min);

User Andie
by
4.8k points