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 }
本文共 261 字,大约阅读时间需要 1 分钟。
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 }
转载于:https://www.cnblogs.com/wood-python/p/5769993.html