Complexity of these two nested for loops

80 views Asked by At

What is the complexity of these nested for loops:

for(int p=2; p<=LENGTH; p++){
    for(int i=1; i*p <= LENGTH; i++)
    {
           //some code
    }
}
0

There are 0 answers