Assignment #82 and Counting By Halves

Code

    /// Name: Lauren Baird
    /// Period: 7
    /// Program Name: Counting By Halves
    /// File Name: CountingByHalves.java
    /// Date Finished: 11/19/2015
    
    import java.util.Scanner;
    
    public class CountingByHalves
    {
        public static void main( String[] args )
        {
            Scanner keyboard = new Scanner(System.in);
            
            System.out.println();
            
            System.out.println( "x" );
            System.out.println( "______" );
            System.out.println();
            
            for ( double n = -10 ; n <= 10 ; n = n+0.5 )
            {
                System.out.println( n );
            }
        }
    }  
    

Picture of the output

Assignment #82