Advertisement
wingman007

Java - variable declaration

Nov 9th, 2013
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.10 KB | None | 0 0
  1. public static void main(String[] args) {
  2.     int i;
  3.     i = 5;
  4.     i = i + 10;
  5.     System.out.println(i);     
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement