Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Security

Authors: Alfred Basta, Melissa Zgola

1st Edition

1435453905, 978-1435453906

More Books

Students also viewed these Databases questions

Question

How do modern Dashboards differ from earlier implementations?

Answered: 1 week ago