输出满足1+2+3+…+*n*<8888的最大整数
输出满足1+2+3+…+n<8888的最大整数
编写应用程序,输出满足1+2+3+…+n<8888的最大整数
输出格式:满足条件的最大整数:xxxxx
public class Demo09 {
public static void main(String[] args) {
// your code
int max=8888,i=1,sum=0;
while(true){
sum=sum+i;
i++;
if(sum>max)
break;
}
System.out.println("满足条件的最大整数:"+(i-1));
}
}
本文来自博客园,作者:涂勇军,转载请注明原文链接:https://www.cnblogs.com/tuyongjun/p/16182808.html