博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
水王查找
阅读量:5321 次
发布时间:2019-06-14

本文共 1127 字,大约阅读时间需要 3 分钟。

package shuiwang;import java.util.*;public class shuitie {	public static void main(String[] args) {        int[] a = null;//存储                Scanner sc = new Scanner(System.in);        System.out.println("帖子总个数:");        int sum = sc.nextInt();        a = new int[sum];        System.out.println("输入每个帖子的ID:");        for(int i = 0;i < sum;i++)        {            a[i] = sc.nextInt();        }        sc.close();        int n = 0;        int shuiwang =a[0];         for(int i = 0;i < a.length - 1;i++)        {            if(n == 0)            {                if(a[i] == a[i + 1])                {                    n++;                    shuiwang = a[i];                }                          }            else            {                if(shuiwang == a[i])                {                    n++;                }                else                {                    n--;                }            }        }        System.out.println("水王的ID : " + shuiwang);             }      }

  由于“水王”发布帖子数量最多,且达到了一半以上,所以设第一位的帖子为“水王”,若后面的一样,则数量加1;反之减一。若数量为零,则下一帖子暂为“水王”

 

转载于:https://www.cnblogs.com/NCLONG/p/10950953.html

你可能感兴趣的文章
SDK目录结构
查看>>
malloc() & free()
查看>>
HDU 2063 过山车
查看>>
Java程序设计-v01
查看>>
高精度1--加法
查看>>
在线文件管理器elFinder支持中文
查看>>
String比较
查看>>
Django之Models
查看>>
Spring缓存注解@Cache使用
查看>>
CSS 透明度级别 及 背景透明
查看>>
Linux 的 date 日期的使用
查看>>
PHP zip压缩文件及解压
查看>>
SOAP web service用AFNetWorking实现请求
查看>>
jQuery Easy UI Resizable(调整大小)组件
查看>>
C# JSON字符串序列化与反序列化
查看>>
HTTPS、SPDY和HTTP/2的性能比较
查看>>
Java变量类型,实例变量 与局部变量 静态变量
查看>>
Angular实践----理解数据绑定过程
查看>>
sublime快捷键
查看>>
mysql操作命令梳理(4)-中文乱码问题
查看>>