///Name: Prooz Fereydouni
///Period: 7
///Project Name: Counting By Halves
///File Name: Cbh.java
///Date: 3/1/2016
public class CBH
{
public static void main( String[] args)
{
System.out.println("x");
System.out.println("_______");
for(double x= -10; x <= 10 ; x=x+.5)
{
System.out.println(x);
}
}
}