/// Name: Ian Stanko
/// Period: 5
/// Program Name: halves
/// File Name: halves.java
/// Date Finished: 2/3/2016
public class halves
{
public static void main( String[] args )
{
for ( double x = -10; x <= 10; x = x + .5 )
{
System.out.println( x + " " );
}
}
}