fork download
  1. class Ideone
  2. {
  3. public static void main (String[] args) throws java.lang.Exception
  4. {
  5. System.out.println("The Eighteenth Byte".length() == 18);
  6. System.out.println("The Nineteenth Byte".length() == 19);
  7. System.out.println("The Twentieth Byte".length() == 20);
  8. }
  9. }
Success #stdin #stdout 0.12s 320576KB
stdin
Standard input is empty
stdout
false
true
false