/// Name: Kelsey Lieberman
/// Period 5
/// Program Name: CountingByHalves
/// File Name: CountingByHalves.java
/// Date Finished: 1/5/2016
public class CountingByHalves
{
public static void main(String[] args)
{
System.out.println( "x \n------");
for (double x = -10; x <= 10; x = x + 0.5)
System.out.println( x);
}
}