✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Consider the following code fragment:
public static void runner(int n) {
int count = 0;
for(int i = 1; i * i < n; i++) {
System.out.println(count, i);
count++;
}
}
What is the time complexity of this code?