int temp1 = 1;
int temp = 499;
for(int i=0;i<4;i++){
System.out.println(temp1+"-"+temp+"\t");
temp1 = temp+1;
if(temp<999){
temp = (temp+1)+499;
}else{
temp = (temp+1)+999;
}
}
小程序给你个思路,你可以将其生成方法,要几个区间就传入几!然后将获得的结果以字符串返回,显示在页面上!