Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~1K People Reached
Favorite Forums
Favorite Tags
java x 2
Member Avatar for John_160

package grossmontbank; import java.util.Scanner; public class GrossmontBank { //class variables (global - accessible throughout this class) //scanner object to be used throughout private static Scanner input = new Scanner(System.in); //array of blank accounts private static final int MAX_ACCOUNTS = 50; private static Account[] accounts = new Account[MAX_ACCOUNTS]; //total accounts created …

Member Avatar for JamesCherrill
0
1K