作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图弄清楚如何将所有数字计入 1 个计数器,该计数器计算每行中“a”的数量并显示每一行,我想知道如何将所有数字计入一行。
import java.io.*;
import java.util.Scanner;
public class CountTheNumberOfAs {
public static void main(String[] args)throws IOException
{
String fileName = "JavaIntro.txt";
String line = "";
Scanner scanner = new Scanner(new FileReader(fileName));
try {
while ( scanner.hasNextLine() ){
line = scanner.nextLine();
int counter = 0;
for( int i=0; i<line.length(); i++ ) {
if( line.charAt(i) == 'a' ) {
counter++;
}
}
System.out.println(counter);
}
}
finally {
scanner.close();
}}}
最佳答案
您需要将计数器移到 while 循环之外。 (打印相同):
int counter = 0;
while ( scanner.hasNextLine() ){
// ...
}
System.out.println(counter);
关于java - 编写一个程序来计算字符 "a"出现在文件 JavaIntro.txt 中的任意位置的次数。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9928314/
我试图弄清楚如何将所有数字计入 1 个计数器,该计数器计算每行中“a”的数量并显示每一行,我想知道如何将所有数字计入一行。 import java.io.*; import java.util.Sca
我是一名优秀的程序员,十分优秀!