SpiralRock

Tushar

Jun 14th, 2009
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.31 KB | None | 0 0
  1. class VariablesPlay
  2.     {
  3.     public static void main(String args[])
  4.         int Var_1=23;
  5.         char Var_2="Trial output script";
  6.         float Var_3=1337.1337;
  7.         System.out.print(Var_1);
  8.         System.out.print(Var_1+10);
  9.         System.out.print(Var_3+1337.1337);
  10.         System.out.println("Hello World");
  11.         System.out.print(Var_2);
  12.     }
  13.  
  14.    
Add Comment
Please, Sign In to add comment