我需要計算文件中以字母「A」開頭和結尾的所有單詞。雖然我能夠統計文件中的所有單詞。下面是代碼...用符號計算文件中的單詞
public class task_1 {
public static int i;
/**
* @param args the command line arguments
*/
public static void main(String[] args) throws IOException {
Scanner sc = new Scanner (System.in);
String name = sc.nextLine();
sc.close();
FileReader fr2 = new FileReader(name);
BufferedReader r = new BufferedReader(fr2);
String s=r.readLine();
int n=0;
while(s!=null) {
System.out.println(s);
String [] words = s.split(" ");
n += words.length;
for(String str : words)
{
if(str.length()==0) n--;
}
s=r.readLine();
}
fr2.close();
System.out.println(n);
}
}
那麼,你的問題是什麼? –
你有問題嗎? – CloudyMarble
我需要統計文件中以字母「A」開頭和結尾的所有單詞 – Audo