I don't know why you still keep refusing to depict in pseudo code what you program is supposed to do... :rolleyes:
However, here is what it does so far:
I don't know if that's what you intended, but I don't think so, as it is still very far from anything that would draw a graph. The various values are completely unreleated here. What's the role of i, and what is count? What's the point in using a variable who's value has never been set to anything meaningful for calculating another value?Code:- calculate sin(PI/2) and store it in y
- calculate the sinus of an uninitialized angle variable and
store it in sin_of_angle (which now contains an arbitrary
random value)
- draw a T-shaped coordinate cross
- if Sin was chosen:
- count i up from 0 to count (another uninitialized variable)
- do nothing else with i (it is completely useless, as is the loop)
