| Author |
Problems with outputting arrays
|
Matt Hall
Greenhorn
Joined: Feb 28, 2006
Posts: 24
|
|
When trying to output an array with System.out.println(DHand1[]); i get an error message '.class' expected import java.io.*; public class Cards { static int DHand1[] = new int[13]; //Creates the array /** Creates a new instance of Cards */ public static void main() { DHand1[2] = 15; //Assigns position 2 of the array with a value of 15 System.out.println(DHand1[]); } } Any help would be appriciated, thx.
|
 |
Keith Lynn
Ranch Hand
Joined: Feb 07, 2005
Posts: 2341
|
|
You need to specify a position in the array for it to print. Also if you want to program to run correctly, you need to make sure the main method has the right signature. Here is one way to print the contents of the array.
|
 |
 |
|
|
subject: Problems with outputting arrays
|
|
|