• Guest, before posting your code please take these rules into consideration:
    • It is required to use our BBCode feature to display your code. While within the editor click < / > or >_ and place your code within the BB Code prompt. This helps others with finding a solution by making it easier to read and easier to copy.
    • Don't share a wall of code. All we want is the problem area, the code related to your issue.


    To learn more about how to use our BBCode feature, please click here.

    Thank you, Code Forum.

Creating a flowchart for this problem

shroom

Coder
Hi, I'm stuck on this last problem. Could anyone create a flowchart using raptor and explain it to me? I'm very confused and need this problem done very soon.
unnamed.png

I'm not sure if this is allowed on the forums, but I hope so. If anyone could send me a screenshot of their raptor flowchart.
 
4 variables are needed.

i = 1

accumulator = 0

numerator = 1

denominator = 1

loop i from 1 to n+1

Every iteration, divide the numerator by the denominator and add the result to the accumulator, multiply the numerator by x, multiply the denominator by i

Piece of cake.
 
Top Bottom