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