Assignment #82

Code

    
    ///Name: Cody Swain
    ///Period: 6
    ///Project Name: CountingHalves
    ///File Name: CountingHalves.java
    ///Date: 1/13/16
    
    
    public class CountingHalves
    {
        public static void main( String[] args )
        {
            
            for ( double x = -10; x <= 10; x = x+.5 ){
                System.out.println( x );
            }
        }
    }

    

Picture of the output

Assignment 82