Wednesday, October 14, 2015

How To Use Short Variable in Java Programming Language + video tutorial

How To Use Short Variable in Java Programming Language

The Following script is the simplest way to declaring and using Short variable in Java:

class UseShort{
 public static void main(String args[]){
  short x;
  x= 199;
  System.out.println("your short variable : "+ x);
 }
}

you can see the output in this video:


ShadowOfBdg© - All rights reserved. 

No comments:

Post a Comment