How To Use Byte Variable in Java Programming Language
The Following script is the simplest way to declaring and using Byte variable in Java:
class UseString{
public static void main(String args[]){
byte x;
x= 200;
System.out.println("your byte variable : "+ x);
}
}
ShadowOfBdg© - All rights reserved.
ShadowOfBdg© - All rights reserved.
No comments:
Post a Comment