gpt4 book ai didi

Java - 向我的程序添加基本统计数据

转载 作者:太空宇宙 更新时间:2023-11-04 06:07:37 25 4
gpt4 key购买 nike

我创建了一个小型扫描仪程序,可以删除输入短语的元音。它工作得很好,除了现在我需要添加一行显示一些简单的统计数据,但我不知道从哪里开始。

我目前拥有的:

public static void main(String[] args) {
new Disemvoweler();
}

public Disemvoweler() {
System.out.println("Welcome to the disemvoweling utility!\n");
Scanner in = new Scanner(System.in);
System.out.println("Enter your phrase: ");
String input = in.nextLine(); // Take in the input.
in.close(); // Close the scanner.

System.out.println("\nYour disemvoweled phrase: "+input.replaceAll("[aeoiu]", ""));

输出:

欢迎使用开元实用程序!

输入您的短语:感谢您的帮助!

您的无元音短语:Thnk y fr yr hlp!

我试图添加到输出中的内容:

从 x 个字符减少到 x 个字符。减少率xx%

最佳答案

有时应该有人回答这样的问题:)别忘了代我向你的老师问好:)

String reduced = input.replaceAll("[aeoiu]", "");
System.out.println("\nYour disemvoweled phrase: "+reduced);
System.out.println("Reduced from " + input.length() + " to " + reduced.length() +" characters. Reduction rate of " + ((double) reduced.length()/input.length() * 100)+"%");

关于Java - 向我的程序添加基本统计数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29107962/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com