Computer Science, asked by hamzakhan27, 8 months ago

write a program that read two numbers and point the largest number please tell me correctly or else I report you . Write it on your copy and send ss​

Answers

Answered by hoangmustang
0

Answer:

JAVA ANSWER, CHECK IT OUT

package newPack;

import java.util.*;

public class largest {

public static void main(String[] args) {

 Scanner input = new Scanner(System.in);

 int a = input.nextInt();

 int b = input.nextInt();

 System.out.println(a>b?a:b);

}

}

Explanation:

BRAINLIEST PLEASE!

Similar questions