栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

统计最大数出现次数 (20 分)

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

统计最大数出现次数 (20 分)

编写程序读取一系列整数,找出它们的最大数,然后计算该数的出现次数,假定输入以0结束。

输入格式:

在一行中输入待统计的整型数,各个数可以以一个或多个空格或回车分隔,以0结束。

输出格式:

以两行输出: 第一行格式:The largest number is 最大数 第二行格式:The occurrence count of the largest number is 出现次数

输入样例:

在这里给出一组输入。例如:

3 5 2 5 5 5 0

输出样例:

在这里给出相应的输出。例如:

The largest number is 5
The occurrence count of the largest number is 4

 import java.util.Scanner;
public class Main {
  public static void main(String[] args) {
        Scanner input = new Scanner(System.in);
        int number, max;
        number = input.nextInt();//先输入一个数
        max = number;//假设此数为最大
      int x=0;//用来计数
        while (number != 0) {//只要不为0就继续输入
            number = input.nextInt();
            if (number > max)//如果有数比当前max大,则置换,并将x置为0
                 {max = number;x=0;}
            else if(max==number) x++;//否则相等的话就++
        }
        System.out.println("The largest number is " + max);
        System.out.printf("The occurrence count of the largest number is %d",x+1);//输出和x相等的数及其本身
     }
}

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/777911.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号