编写一个java程序,使用String类的常用方法,统计字符串“hello world!”中出现的字符“l”的个数
时间: 2024-02-11 20:06:34 浏览: 80
统计字符串中每个字符出现的个数
5星 · 资源好评率100%
好的,以下是程序的代码:
```java
public class CountCharInString {
public static void main(String[] args) {
String str = "hello world!";
int count = 0;
for (int i = 0; i < str.length(); i++) {
if (str.charAt(i) == 'l') {
count++;
}
}
System.out.println("字符串中字符'l'的个数为:" + count);
}
}
```
程序说明:
1. 首先定义一个字符串变量 `str`,并将其初始化为 "hello world!"。
2. 然后定义一个整型变量 `count`,用于统计字符 "l" 出现的次数,初始值为 0。
3. 使用 `for` 循环遍历字符串中的每一个字符,如果当前字符是 "l",则将计数器 `count` 加一。
4. 最后输出统计结果。
程序的运行结果为:
```
字符串中字符'l'的个数为:3
```
这表示在字符串 "hello world!" 中,字符 "l" 出现了 3 次。
阅读全文