标签:
1 public class Solution 2 { 3 public static void main(String[] args) 4 { 5 int n = 0; 6 7 while(n * n < 12000) 8 { 9 n++; 10 } 11 12 System.out.println(n); 13 } 14 }
HW4.12
原文地址:http://www.cnblogs.com/wood-python/p/5769985.html