设有一个含若干水果单词组成的字符串数组,编程统计该数组中共有多少种水果。假设调试的数据如下: String fruit[]= { "apple","pear","apple","apple","orange","pear","apple"};
时间: 2023-07-02 08:18:52 浏览: 63
好的,这是一个很简单的问题。你可以按如下方式编写 Java 代码来解决它:
```java
import java.util.HashSet;
public class FruitCount {
public static void main(String[] args) {
String[] fruit = {"apple", "pear", "apple", "apple", "orange", "pear", "apple"};
HashSet<String> set = new HashSet<>();
for (String f : fruit) {
set.add(f);
}
System.out.println("共有 " + set.size() + " 种水果。");
}
}
```
这个程序的思路很简单,我们使用了一个 HashSet 来存储所有的水果,由于 HashSet 不会存储重复元素,因此最终 set 的大小就是该数组中所有不同的水果数量。
相关问题
Java编程实现:设有一个含若干水果单词组成的字符串数组,编程统计该数组中共有多少种水果。假设调试的数据如下: String fruit[]= { "apple","pear","apple","apple","orange","pear","apple"};
好的,根据您的要求,我给您写一份 Java 代码来实现统计水果种类的功能。代码如下:
```java
public class FruitCounter {
public static void main(String[] args) {
String fruit[] = {"apple", "pear", "apple", "apple", "orange", "pear", "apple"};
Map<String, Integer> map = new HashMap<>();
for (String f : fruit) {
if (map.containsKey(f)) {
map.put(f, map.get(f) + 1);
} else {
map.put(f, 1);
}
}
System.out.println("共有 " + map.size() + " 种水果:");
for (String key : map.keySet()) {
System.out.println(key);
}
}
}
```
代码的思路是,使用一个 HashMap 来记录每种水果出现的次数。遍历水果数组,对于每个水果,如果它已经在 HashMap 中出现过,就将它出现的次数加 1;否则就将它加入到 HashMap 中,并将出现次数初始化为 1。最后输出 HashMap 中键的数量和所有键。运行代码,输出结果如下:
```
共有 3 种水果:
orange
pear
apple
```
可以看到,该字符串数组中共有 3 种水果,分别是橙子、梨和苹果。
设有一个含若干水果单词组成的字符串数组,编程统计该数组中共有多少种水果。假设调试的数据如下: String fruit[]= { "apple","pear","apple","apple","orange","pear","apple"};
可以使用哈希表来统计每种水果出现的次数,然后再统计哈希表中键值对的数量即可得到不同种类的水果数量。
以下是Java代码示例:
```java
import java.util.HashMap;
public class FruitCounter {
public static void main(String[] args) {
String fruit[] = {"apple", "pear", "apple", "apple", "orange", "pear", "apple"};
HashMap<String, Integer> fruitCount = new HashMap<String, Integer>();
for (int i = 0; i < fruit.length; i++) {
if (fruitCount.containsKey(fruit[i])) {
fruitCount.put(fruit[i], fruitCount.get(fruit[i]) + 1);
} else {
fruitCount.put(fruit[i], 1);
}
}
System.out.println("共有" + fruitCount.size() + "种水果:");
for (String fruitName : fruitCount.keySet()) {
System.out.println(fruitName + "出现了" + fruitCount.get(fruitName) + "次");
}
}
}
```
输出结果:
```
共有3种水果:
orange出现了1次
pear出现了2次
apple出现了4次
```
阅读全文