Skip to content

Instantly share code, notes, and snippets.

@priyankahdp
Created November 18, 2013 16:55
Show Gist options
  • Save priyankahdp/7531224 to your computer and use it in GitHub Desktop.
Save priyankahdp/7531224 to your computer and use it in GitHub Desktop.
For Blog
public class TestMain {
public static void main(String[] args) {
boolean bl=true;
byte b=10;
short s=54;
int i=150;
long l=125L;
float f=32.5f;
double d=99.45;
System.out.println(bl+" "+b+" "+s+" "+i+" "+l+" "+f+" "+d);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment