/*
Date : 14 November 2013
Author : Shivam Tiwari
Organization : http://mycodedock.blogspot.in/
Description : Data-types in Java
*/
import java.lang.String;
public class Main{
public static void main
(String[] args
){
byte a = 45;
short b = 345;
int c = 56789;
long d = 344456787;
float e = 12;
double f = 23456.8765;
String g
= "This is a String";
System.
out.
println("This is a byte : "+a
); System.
out.
println("This is a short : "+b
); System.
out.
println("This is an integer : "+c
); System.
out.
println("This is a long : "+d
); System.
out.
println("This is a float : "+e
); System.
out.
println("This is a double : "+f
); System.
out.
println("This is a String : "+g
); }
}