Question: Need help with this exercise and very new to C++. Using a new editor called CodeLite. 1) Write code for a function that uses a

Need help with this exercise and very new to C++. Using a new editor called "CodeLite".

1) Write code for a function that uses a loop to compute the sum off all integers from 1 to n. Do a time analysis, counting each basic operation(such as assignment and ++) as one operation. Also find the time difference when n increases from 100-100,000.

Must take user input and print out the start and end times. Add comments

Here's what i have so far:

#include #include #include using namespace std;

int main() {

clock_t begin = clock(); int x; cout << "Please input a number/integer: "; cin >> x; int sum=0; for(int i=0;i { sum=sum+i; } cout << " Here is the sum: \t" << sum <

clock_t end = clock(); double time_spent = (double)(end - begin) / CLOCKS_PER_SEC;

cout<<"The time spent: "< }

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!