How to write matehmatic equation in c++. Like Summation
Figure out how you would write it out by hand. Then figure out the steps you took, and how you would work out "any case" summation of any numbers. Then you have your algorithm. Break that into coding functions (which will just be a bare-bones structure - like your print statements, your if statements, your internal logic), and then use that "pseudocode " to code it.
Comment