Blogroll

This blog is created for education about engineering students.All the engineering students are get free downloadable books here. not only books and also different software also available here

3.c. Count of Words


c) Write a Java program to make frequency count of words in a given text.


class Count
{
public static void main(String args[])
{ int i,c=0;
for(i=0;i
{ System.out.println(args[i]);
c++;
}
System.out.println("number of words="+c);
}
}

No comments:

Post a Comment

Total Pageviews