WordCount

WordCount

i have to write a program for Write a program that takes a string containing a sentence or a set of sentences, and counts the number of words in the sentence that meet or exceed a specified minimum length (in letters). For example, if the minimum length entered is 4, your program should only count words that are at least 4 letters long.

Input the string and the minimum word length (integer), in that order, and output the word count (integer). Words will be separated by one or more spaces. Non-letter characters (spaces, punctuation, digits, etc.) may be present, but should not count towards the length of words.

And this is what i have so far but it doesnt seem to work right so can you help me find where i made a mistake

import java.util.*;

public class WordCount{ public static void main(String [] args){

String str; Scanner s= new Scanner(System.in); System.out.println("Enter String:"); str=s.nextLine(); int count=WCount(str); System.out.println("Count="+count); } public static int WCount(String str) { int l=str.length(); int count=0; for(int i=0;i0) count++; return(count); }

}

View Answers

October 24, 2011 at 1:09 PM

import java.util.*;

public class WordCount{ 
    public static void main(String [] args){
        int count=0;
        Scanner s= new Scanner(System.in);
        System.out.print("Enter String:");
        String str=s.nextLine(); 
        System.out.print("Enter minimum length: ");
        int len=s.nextInt();
        String st[]=str.split(" ");
        for(int i=0;i<st.length;i++){
         if((st[i].length())>=len){
             count++;
         }
         }  
        System.out.println("Number of Words: "+count); 

}
}

October 24, 2011 at 1:09 PM

import java.util.*;

public class WordCount{ 
    public static void main(String [] args){
        int count=0;
        Scanner s= new Scanner(System.in);
        System.out.print("Enter String:");
        String str=s.nextLine(); 
        System.out.print("Enter minimum length: ");
        int len=s.nextInt();
        String st[]=str.split(" ");
        for(int i=0;i<st.length;i++){
         if((st[i].length())>=len){
             count++;
         }
         }  
        System.out.println("Number of Words: "+count); 

}
}









Related Tutorials/Questions & Answers:
WordCount
help me find where i made a mistake import java.util.*; public class WordCount...); } }   import java.util.*; public class WordCount{ public static...; import java.util.*; public class WordCount{ public static void main
ModuleNotFoundError: No module named 'wordcount'
ModuleNotFoundError: No module named 'wordcount'  Hi, My Python... 'wordcount' How to remove the ModuleNotFoundError: No module named 'wordcount' error? Thanks   Hi, In your python environment you
Advertisements
ModuleNotFoundError: No module named 'wordcount'
ModuleNotFoundError: No module named 'wordcount'  Hi, My Python... 'wordcount' How to remove the ModuleNotFoundError: No module named 'wordcount' error? Thanks   Hi, In your python environment you
ModuleNotFoundError: No module named 'wordcount'
ModuleNotFoundError: No module named 'wordcount'  Hi, My Python... 'wordcount' How to remove the ModuleNotFoundError: No module named 'wordcount' error? Thanks   Hi, In your python environment you
ModuleNotFoundError: No module named 'wordcount_file'
ModuleNotFoundError: No module named 'wordcount_file'  Hi, My... named 'wordcount_file' How to remove the ModuleNotFoundError: No module named 'wordcount_file' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'wordcount_file'
ModuleNotFoundError: No module named 'wordcount_file'  Hi, My... named 'wordcount_file' How to remove the ModuleNotFoundError: No module named 'wordcount_file' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'wordcount-norico'
ModuleNotFoundError: No module named 'wordcount-norico'  Hi, My... named 'wordcount-norico' How to remove the ModuleNotFoundError: No module named 'wordcount-norico' error? Thanks   Hi, In your
Java Word Count - Word Count Example in Java
will be declaring two functions called wordcount and linecount in the program...) itself but for the counting of the number of words by using the wordcount function. wordcount(String line)ADS_TO_REPLACE_2 The function wordcount(String line
Retrieve a list of words from a website and show a word count plus a specified number of most frequently occurring words
); } Map<String,Integer> wordCount = new HashMap<String,Integer>... occurrence of key, word, in the wordCount map */ } //System.out.println(wordCount); //use this for testing //use
Java Strings problem - Java Interview Questions
java.util.*; class WordCount { public static void main(String args
program to display frequency count of each word in a file using Hashmap, Hashset and streamtokenizer.plz help me out ..
java.util.Iterator; import java.util.StringTokenizer; public class WordCount { public static... WordCount { public static void main(String args[]) { BufferedReader br
Exceptional Constructors - Java Tutorials
does not exist"); } } } public class WordCount{ public static void

Ads