WordCount.java
public class WordCount
{
public static void main(String[] args)
{
int count = 0;
while (!StdIn.isEmpty())
{
String word = StdIn.readString();
count++;
}
StdOut.println("number of
words = " + count);
}
}
No comments:
Post a Comment