Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. ajteka

    How to Get the min/max in this program?

    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...

Part and Inventory Search

Back
Top