How do I get the min/max in this Java program?
import java.util.Scanner;
public class Array2x3
{
public static void main( String args[] )
{
Scanner input = new Scanner( System.in);
int t[][] = new int [2][3];
t[0][0] = 1;
t[0][1] = 1;
t[0][2] = 1;
t[1][0] = 1;
t[1][1] = 1;
t[1][2] = 1...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.