2个回答
展开全部
public static void main (String args[]){
int[] array = new int[]{5,1,1,1,3,3,3,6,7,7,8,8,8,8,9,1,2,3,4,4};
//连续出现最多的数
int more = 0;
//连续出现最多的次数
int moreCount = 0;
//当前连续出现的次数
int tempCount = 0;
//上一次取出的数
int before = 0;
for(int i=0;i<array.length;i++){
int temp = array[i];
//当前取出的数是不是和上一次取出的数一样
if(temp == before){
//一样当前连续出现次数加1
tempCount++;
}else{
//如果不一样判断上一个数连续出现的次数是不是最多
if(tempCount>moreCount){
moreCount = tempCount;
more = before;
}
before = temp;
tempCount = 1;
}
}
System.out.println(more+"连续出现"+moreCount+"次");
}
int[] array = new int[]{5,1,1,1,3,3,3,6,7,7,8,8,8,8,9,1,2,3,4,4};
//连续出现最多的数
int more = 0;
//连续出现最多的次数
int moreCount = 0;
//当前连续出现的次数
int tempCount = 0;
//上一次取出的数
int before = 0;
for(int i=0;i<array.length;i++){
int temp = array[i];
//当前取出的数是不是和上一次取出的数一样
if(temp == before){
//一样当前连续出现次数加1
tempCount++;
}else{
//如果不一样判断上一个数连续出现的次数是不是最多
if(tempCount>moreCount){
moreCount = tempCount;
more = before;
}
before = temp;
tempCount = 1;
}
}
System.out.println(more+"连续出现"+moreCount+"次");
}
追问
如果是连续3个1 就算不出
追答
少判断了一步,修改后
public static void main (String args[]){
int[] array = new int[]{5,1,1,1,3,3,3,6,7,7,8,8,8,8,9,1,2,3,4,4,4};
// 连续出现最多的数
int more = 0;
// 连续出现最多的次数
int moreCount = 0;
// 当前连续出现的次数
int tempCount = 0;
// 上一次取出的数
int before = 0;
for(int i=0;imoreCount){
moreCount = tempCount;
more = before;
}
before = temp;
tempCount = 1;
}
}
if(tempCount>moreCount){
moreCount = tempCount;
more = before;
}
System.out.println(more+"连续出现"+moreCount+"次");
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询