Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. public class whatIsYourType
  2. {
  3. static final double PI = 3.1415; //store value of PI until fourth decimal
  4.     public static void main(String [] args)
  5.     {
  6.         int number = 3;//variable number store integer of 3
  7.         char aSingleLetter = 'A';//store character of ‘A’. ‘A’ is not equal ‘a’
  8.         String someText = "This is some text."//store some text
  9.         boolean logic= true;//store logic true.
  10.     }
  11. }