Computer Science, asked by rs1731377, 3 months ago

System.out.println(Math.max(34,-999));​


DüllStâr: do we have to find out put?

Answers

Answered by Oreki
2

Output:

34

Explanation:

Math.max( ) returns the greatest value of the two arguments passed.

Answered by BrainlyProgrammer
3

34

Explaination:-

Max() returns the greater number

Therefore, 34 is greater than -999

Hence, correct answer: 34

Similar questions