import java.io.*;
import java.util.Scanner;
import java.lang.*;
class WordCount{
static String word;
public static void main(String args[])
{
int count=0;
Scanner in=new Scanner(System.in);
System.out.println("Enter the sentence");
word=in.nextLine();
for(int i=0;i<word.length();i++){
if(i!=word.length())
if(word.charAt(i)==' ' || word.charAt(i)!='.' && isNotSpace(word,i))
{
count++;
}
}
System.out.println("The number of words in the sentence are : " +count);
}
static boolean isNotSpace(String word,int i)
{
if(word.charAt[i+1]!=' ')
return true;
else
return false;
}
}
这里我声明了一个名为word的静态变量,并通过从main方法传递单词变量来调用“isNotSpace”方法。但是我在“isNotSpace”方法中遇到错误:
WordCount.java:23: error: cannot find symbol
if(word.charAt[i+1]!=' ')
^
symbol: variable charAt
location: variable word of type String
1 error
答案 0 :(得分:6)
你看起来很糟糕。你想要:
word.charAt(i+1) // parentheses, not brackets.
如果在操作员周围放置一些空格,您可能还会发现您的代码更容易阅读和处理。我发现这样可以更容易地发现像这样的小错误。例如
if (word.charAt(i + 1) != ' ')