Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Please write it in C++ Write a program that computes the summation between 1 and a given number. For example, if the user inputs 5
Please write it in C++
Write a program that computes the summation between 1 and a given number. For example, if the user inputs 5 the function should add 1 2+3+4 5, and return 15. The program should compute the summation in two different ways which are described below and compare if the functions produce the same result. 1. Write a function that computes the summation between 1 and a given number using a loop. 2. Write a function that computes the summation between 1 and a given number n using the following formula: .. I = (n (n + 1 ) )/2 Example of the execution: Input a number sing a loop, the result of the summation is: 15 sing Gauss' s formula, the result f the summation is 15 both mtehods give the same value
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started