Assignment 82, Counting By Halves

Code

   ///Name: Stella Koliavas
   ///Period: 5
   ///File Name: Ad2.java
   ///Date Finshed: 2/16/16
   
   public class Half
   {
    public static void main( String[] args )
    {
        
        System.out.println(" x " );
        System.out.println("_____" );

        for ( double n = -10.0 ; n <= 10.0 ; n = n + .5 )
        {
            System.out.println(  n );
        }

    }
   }
	


        
    

Picture of the output

Assignment 82