// MathTest.java
// by Bryson Payne

public class MathTest
{
	public static void main(String[] args)
	{
		System.out.println("The Square Root of 30 is: " + Math.sqrt(30));
		System.out.println("37.5 rounded is: " + Math.round(37.5));
		System.out.println("A number between 1 & 100 is: " +
								 Math.round(Math.random()*100));
	}
}