Merge pull request #21 from ashish4321/master
Added program for counting words in a string.
This commit is contained in:
commit
7b2224a012
19
countwords.java
Normal file
19
countwords.java
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
import java.util.Scanner;
|
||||||
|
class CountTheWords
|
||||||
|
{
|
||||||
|
public static void main(String args[])
|
||||||
|
{
|
||||||
|
System.out.println("Enter the string");
|
||||||
|
Scanner sc = new Scanner(System.in);
|
||||||
|
String s=sc.nextLine();
|
||||||
|
int count = 1;
|
||||||
|
for (int i = 0; i < s.length()-1; i++)
|
||||||
|
{
|
||||||
|
if((s.charAt(i) == ' ') && (s.charAt(i+1) != ' '))
|
||||||
|
{
|
||||||
|
count++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
System.out.println("Number of words in the string = "+count);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user