Computer Science, asked by yash135392, 8 months ago

Write a program to input two numbers.Find and print the greater and smaller number (using Math.min() and Math.max()) in java

Answers

Answered by tsg708231237ananya
3

YOUR ANSWER IS HERE

Java Math max() method with Examples

The Java.lang.math.max() function is an inbuilt function in Java which returns maximum of two numbers. The arguments are taken in int, double, float and long.If a negative and a positive number is passed as argument then the positive result is generated. And if both parameters passed are negative then the number with the lower magnitude is generated as result.

Syntax:

dataType max(dataType num1, dataType num2)

The datatypes can be int, float, double or long.

Parameters : The function accepts two parameters num1 and num2

among which the maximum is returned

Return value:The function returns maximum of two numbers. The datatype will be the same as that of the arguments.

Given below are the examples of the function max()

// Java program to demonstrate the use of max() function

// when two double data-type numbers are

// passed as arguments

public class Gfg {

public static void main(String args[])

{

double a = 12.123;

double b = 12.456;

// prints the maximum of two numbers

System.out.println(Math.max(a, b));

}

}

HOPE IT YOUR HELPS PLEASE BRANLIEST......... FOLLOW ME....

PLEASE BRANLIEST AND FOLLOW ME

Answered by Brenquoler
116

import java. util*

class greater number

{

public static void main (String args [])

{

scanner sc=new scanner(System . in)

int a,b;

a=sc .nextInt();

b=sc .nextInt();

if (a>b)

System.out.println(Math.max(a,b))

}

}

Similar questions