// Donovan Rich
// Period 6
// Counting By Halves
// CountByHalves.java
// 2/17/2016
public class CountByHalves
{
public static void main( String[] args )
{
for ( double n = -10 ; n <= 10 ; n = n+0.5 )
{
System.out.print( n + " " );
}
System.out.println();
}
}