-->
下列程序段的时间复杂度为()。 ``` x = n; /*n > 1*/ y = 0; while(x >= (y + 1) * (y + 1)) y = y + 1; ``` A.Θ(n) B.Θ(n½) C.Θ(1) D.Θ($$n^2$$) 答案:B