what is missing from the codes that I entered? , how to add the numbers I entered? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 4

what is missing from the codes that I entered? , how to add the numbers I entered?

how to display the output, for example N = 5, the output displays: 1 + 2 + 3 + 4 + 5 = 15 https://code.sololearn.com/ccTqskq7x2qN/?ref=app

21st Feb 2019, 1:19 PM
Iren
Iren - avatar
3 Answers
+ 3
What I would do in a code like that is set an if statement in the for loop to check whether the variable k is equal to the last value in the loop (which, I guess in this case would be n), and set it to output k + " = ", with an else statement outputting what you already have to output (this would get the "x1 + x2 + x3... + xN = " output). For the answer, you could set a recursive function to add up the values, similar to what you would do with a factorial (but rather than multiplying you just add)
21st Feb 2019, 1:57 PM
Faisal
Faisal - avatar
+ 3
Okay,I understand what you mean, Thank you for the explanation.
21st Feb 2019, 2:16 PM
Iren
Iren - avatar
+ 2
I do not really understand your point.
21st Feb 2019, 3:31 PM
Iren
Iren - avatar