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 }
时间: 2024-10-24 13:03:02
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 }