Results 1 to 2 of 2
Thread: Beginner needs help!
- 11-23-2008, 09:36 PM #1
Member
- Join Date
- Nov 2008
- Posts
- 5
- Rep Power
- 0
Beginner needs help!
I want to find out the max and min of the numbers in all the arrays, how would I do that?? I know how to find max and min when using int values (Math.max) but in this array I have strings, so how do i do it?
P.S. I have to make a program that takes in a basketballs team statistics and prints out the player with the most rebounds, the player with the most assits and the player with the most points
Here is the code:
Java Code:String[] Rebounds = new String [12]; //make an array for rebounds for each player Rebounds [0] = "4.90"; //save 4.90 as trevor arizas rebounds Rebounds [1] = "5.10"; //save 5.10 as kobe bryant rebounds Rebounds [2] = "8.90"; //save 8.90 as andrew bynum rebounds Rebounds [3] = "3.40"; //save 3.40 as Jordan Farmer rebounds Rebounds [4] = "2.60"; //save 2.60 as Derek Fisher rebounds Rebounds [5] = "10.10"; // save 10.10 as Pau Gasol rebounds Rebounds [6] = "1.30"; // save 1.30 as Chris Mihm rebounds Rebounds [7] = "5.90"; // save 5.90 as Lamar Odom rebounds Rebounds [8] = "1.80"; // save 1.80 as Josh Powell rebounds Rebounds [9] = "3.30"; // save 3.30 as Vladimir Radmanovic rebounds Rebounds [10] = "1.90"; // save 1.90 as Sasha Vujacic rebounds Rebounds [11] = ".40"; // save .40 as Luke Walton rebounds String[] Points = new String [12]; //make an array that shows the points for each player Points [0] = "9.4"; //save 9.4 as trevor arizas points Points [1] = "24.4"; //save 24.4 as kobe bryant points Points [2] = "9.2"; //save 9.2 as andrew bynum points Points [3] = "10.2"; //save 10.2 as Jordan Farmer points Points [4] = "10.6"; //save 10.6 as Derek Fisher points Points [5] = "17.6"; // save 17.6 as Pau Gasol points Points [6] = "4.7"; // save 4.7 as Chris Mihm points Points [7] = "9.3"; // save 9.3 as Lamar Odom points Points [8] = "2.8"; // save 2.8 as Josh Powell points Points [9] = "6.1"; // save 6.1 as Vladimir Radmanovic points Points [10] = "5.2"; // save 5.2 as Sasha Vujacic points Points [11] = ".6"; // save .6 as Luke Walton points String[] Assists = new String [12]; //make an array that shows the assists for each player Assists [0] = "1.7"; //save 1.7 as trevor arizas assists Assists [1] = "4.0"; //save 4.0 as kobe bryant assists Assists [2] = "1.8"; //save 1.8 as andrew bynum assists Assists [3] = "2.9"; //save 2.9 as Jordan Farmer assists Assists [4] = "2.7"; //save 2.7 as Derek Fisher assists Assists [5] = "3.1"; // save 3.1 as Pau Gasol assists Assists [6] = ".0"; // save .0 as Chris Mihm assists Assists [7] = "2.2"; // save 2.2 as Lamar Odom assists Assists [8] = ".0"; // save .0 as Josh Powell assists Assists [9] = "1.1"; // save 1.1 as Vladimir Radmanovic assists Assists [10] = "1.4"; // save 1.4 as Sasha Vujacic assists Assists [11] = ".6"; // save .6 as Luke Walton assists
- 11-27-2008, 05:12 AM #2
- Join Date
- Jul 2007
- Location
- Colombo, Sri Lanka
- Posts
- 11,374
- Blog Entries
- 1
- Rep Power
- 18
Simply you can sort the array, in default elements are sorting in ascending order. Just look at the following code example.
Java Code:int[] aa = new int[]{12, 34, 56, 34, 23, 3, 56, 88, 99, 2}; java.util.Arrays.sort(aa); for(int i = 0; i < aa.length; i++) { System.out.println(aa[i]); }
Similar Threads
-
Java Beginner needs help!!
By Polyy in forum New To JavaReplies: 4Last Post: 11-23-2008, 02:11 AM -
almost done...beginner needs help plz..
By shongo in forum New To JavaReplies: 15Last Post: 11-10-2008, 08:14 AM -
Help with Beginner exercise.
By Trunksten in forum New To JavaReplies: 1Last Post: 07-10-2008, 05:40 AM -
beginner needs help with OBD-II input
By andrewos in forum New To JavaReplies: 3Last Post: 07-30-2007, 09:46 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks