//  Data Structures with Java by John R. Hubbard
//  Copyright McGraw-Hill, 2001
//  Example 1.2 on page 3
//  Special values for floating-point types

public class Testing
{ public static void main(String[] args) 
  { double x=1E200;
    System.out.println("x = " + x);
    System.out.println("x*x = " + x*x);
    System.out.println("(x*x)/x = " + (x*x)/x);
    System.out.println("(x*x)/(x*x) = " + x*x/(x*x));
  }
}
