///Name: Ilana Levy
///Period: 5
///Program Name: Counting by Halves
///File Name: countHalves.java
///Date Finished: 9/25/2015
public class countHalves
{
public static void main( String[] args )
{
double x;
for ( x = -10 ; x <= 10 ; x = x + .5 )
System.out.println( x );
}
}