Created
November 18, 2013 16:55
-
-
Save priyankahdp/7531224 to your computer and use it in GitHub Desktop.
For Blog
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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