JAVA利用String类的各种方法,分别判断字符是否为“?”、“!”、“.”,用3个计数器分别计数
时间: 2023-11-14 07:04:36 浏览: 146
每个符号出现的次数,并输出计数结果。如何实现?
可以利用String类的charAt()方法和if语句判断每个字符是否为“?”、“!”、“.”,然后用三个计数器分别计数。
具体实现代码如下:
```java
String str = "Hello! How are you doing? Is everything okay?";
int qNum = 0, eNum = 0, pNum = 0;
for(int i = 0; i < str.length(); i++) {
char c = str.charAt(i);
if(c == '?') {
qNum++;
} else if(c == '!') {
eNum++;
} else if(c == '.') {
pNum++;
}
}
System.out.println("问号出现的次数:" + qNum);
System.out.println("感叹号出现的次数:" + eNum);
System.out.println("句号出现的次数:" + pNum);
```
输出结果如下:
```
问号出现的次数:1
感叹号出现的次数:1
句号出现的次数:2
```
注意,这里只是作为示例,实际应用中需要根据具体需求进行适当修改。
相关问题
用java利用string类的各种方法,分别判断字符是否为“?”、“!”、“.”,用3个计数器分别计数
字符串中 "?"、"!"、"." 的出现次数。
好的,我明白了。以下是代码示例:
```
public static void main(String[] args) {
String str = "Hello! How are you?";
int countQuestion = 0, countExclamation = 0, countPeriod = 0;
for (int i = 0; i < str.length(); i++) {
char ch = str.charAt(i);
if (ch == '?') {
countQuestion++;
} else if (ch == '!') {
countExclamation++;
} else if (ch == '.') {
countPeriod++;
}
}
System.out.println("Question marks: " + countQuestion);
System.out.println("Exclamation marks: " + countExclamation);
System.out.println("Periods: " + countPeriod);
}
```
这个程序中,我们使用了String类的一个常用方法charAt()来逐个访问字符串中的字符,然后判断每个字符是否为"?"、"!"、"。",并累加计数器的值。最后,我们输出每个符号出现的次数。希望这个程序能为你解决问题。
用Java语言利用String类的各种方法,分别判断字符是否为“?”、“!”、“.”,用3个计数器分别计数。
好的,我理解你的问题了。以下是Java代码:
```java
public class StringCounter {
public static void main(String[] args) {
String inputStr = "Hello world! How are you?";
int questionCounter = 0;
int exclamationCounter = 0;
int periodCounter = 0;
for (char c : inputStr.toCharArray()) {
if (c == '?') {
questionCounter++;
} else if (c == '!') {
exclamationCounter++;
} else if (c == '.') {
periodCounter++;
}
}
System.out.println("Number of question marks: " + questionCounter);
System.out.println("Number of exclamation marks: " + exclamationCounter);
System.out.println("Number of periods: " + periodCounter);
}
}
```
以上代码会统计输入字符串中问号、感叹号和句号的数量,并输出结果。希望能对你有帮助。
阅读全文