Computer Science, asked by shivangimajumder, 4 months ago

what is the complexity if the code:

int Calculate (int a)
{
if (a <= 2)
return 1;
else
return (Calculate (floor(sqrt(a))) + a);
3​

Answers

Answered by sanjana4320
0

Answer:

Cyclomatic complexity is a software metric used to indicate the complexity of a program. It is a quantitative measure of the number of linearly independent paths through a program's source code. It was developed by Thomas J.

Similar questions