1 2 3 4 5 6 7 | input "a = ", a input "b = ", b input "h = ", h For x=a to b step h y = -cos( 2 * x) Print x, y Next x |
1 2 3 4 5 6 7 | input "a = ", a input "b = ", b input "h = ", h For x=a to b step h y = -cos( 2 * x) Print x, y Next x |