Question: Write down the time complexity with proper explanation of the following code segment. for (int i = 1; i * i
Write down the time complexity with proper explanation of the following code segment.
| for (int i = 1; i * i <= n; i++) { if (n % i == 0) { cout<< i << ; cout<< (n/i) << ; } } |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
