Advertisement
thenewboston

Java Programming Tutorial - 27 - Introduction to Arrays

Aug 22nd, 2014
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.15 KB | None | 0 0
  1. class apples{
  2.    public static void main(String[] args){
  3.      
  4.       int bucky[]=(2,4,5,7,9);
  5.      
  6.       System.out.println(bucky[2]);
  7.    }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement