/// Name: Kyle Ivy
/// Period: 5
/// Program Name: byHalves
/// File Name: byHalves.java
/// Date Finished: 1/5/2016
public class byHalves {
public static void main( String[] args ) {
for ( double x = -10; x <= 10; x = x+.5 ){
System.out.println( x );
}
}
}