//TestDefaultFloatingPointType.java

public class TestDefaultFloatingPointType
{
    public static void main(String args[])
    {
        //The default type of a floating-point value is double.
        //=====================================================
        float f = 3.14f;
    }
}

