5.12(求满足n^2 > 12000的n的最小值)使用while循环找出满足n * n 大于12000的最小整数n。
5.12(Find the smallest n such that n^2 > 12000)Use a while loop to find the smallest integer n such that n * n is greater than 12,000.
下面是参考答案代码:
public class FindTheSmallestNQuestion12 {
public static void main(String[] args