Welcome to the Ranch Jason.
I disagree with Subhajit Mitra about your minimum method being completely wrong. He is however right that you are passing a single number rather than the array. It is actually quite simple to pass an array instead and it doesn't need a lot of alteration in your code.
You can tell you are using the SAMS and Dummies books; they tend to put everything in the main method, which is OK for learning the syntax, but no good for learning object orientation. You can also tell you are using NetBeans, having a class called Main. The Main class and its main method are intended just for starting off your application, and should simply create an object of another class and set it off. Try this sort of thing:-
I have put a * at the beginning of every line I have added; apart from deleting "static" before the getMinimum method, I have made no other changes.
Now what you have is a proper application
Main------------------->MinimumCalculator
[no fields]............................balances: int[]
+$main(
String[]):void...+getMinimum(int):void
.......................................+go():void
This means you have your Main class which has a main method and no fields which calls your MinimumCalculator go method; the go method then calls its own get minimum method and prints it out.
And as Subhajit Mitra implies, you need to change your get minimum method to analyse the array.
CR
Have had to put .......... in the diagram above to keep the spacing.
Added: The + means public access, the $ means "static", and the
word after the : means return type. I have msised out the consructor methods.
[ June 09, 2006: Message edited by: Campbell Ritchie ]