A Simple Example (with 1 error!)
public static void main(String argv[] )
double a,b,c; // declare variables
a = 1.75 ; // assign values
c = a + b; // add them together
System.out.println(“sum= “ + c);
System.out.println(“Pi=“ + PI )
} // end class Add2Numbers