package com.imsl.test.example.math; import com.imsl.math.*; /** *
Displays the physical constant PI.
* * The value of the physical constant PI is printed. * @see Code * @see Output * */ public class PhysicalEx1 { public static void main(String args[]) { System.out.println("The value of the physical constant PI is " + Physical.constant("PI")); } }