Just for Java Learning
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
274 B

  1. package tutorial;
  2. public class Declare_1D_Array {
  3. public static void main (String [] args) {
  4. double[] dblScore = new double[10];
  5. System.out.println("Index" + "\t" + "Value");
  6. for(int i=0; i<dblScore.length; i++)
  7. System.out.println(i + "\t" + dblScore[i]);
  8. }
  9. }