///Name: Daniel Tiffany-Appleton
///Period: 7
///Program Name: Counting Halves
///File Name: CountingHalves
///Date Finished: 2/3/16
public class CountingHalves
{
public static void main( String[] args )
{
for ( double x = -10.0 ; x <= 10.0 ; x = x+.5 )
{
System.out.println( x );
}
}
}