Advertisement
CamiloC21

Untitled

Feb 18th, 2020
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.38 KB | None | 0 0
  1. package com.company;
  2.  
  3. public class Main {
  4.  
  5.     public static void main(String[] args) {
  6.         int[] myList;
  7.  
  8.         myList = new int[10];
  9.  
  10.         int slot = 0;
  11.  
  12.         for (int i = 0; i < myList.length; i++) {
  13.             myList[i] = -113;
  14.             System.out.println("The slot "+slot+" contains a: "+myList[i]);
  15.             slot = slot+1;
  16.         }
  17.     }
  18.  
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement