/**
 * This class demonstrates how to specify floats vs doubles in Java.
 *
 * But, it's easier to just use doubles.
 *
 * @author Sara Sprenkle
 */
public class Float { 
  
   /**
    * Called when user runs 
    *  java Float
    */
   public static void main(String[] args) {
       float f = 3.14;
       // double f = 3.14; // <-- use this solution
       System.out.println(f);
   }
}
