-
Notifications
You must be signed in to change notification settings - Fork 0
/
counter.java
58 lines (48 loc) · 1.12 KB
/
counter.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// counter.java
import java.util.Scanner;
public class counter
{
private String str;
private int totalWords;
private int totalLetters;
counter()
{
str = "";
totalLetters = totalWords = 0;
}
public void setStr(String str)
{
this.str = str;
}
public void countTotal()
{
for (int words = 0; words < str.length(); words++)
{
if (str.charAt(words) == ' ')
{
totalWords++;
totalLetters++;
}
else
{
totalLetters++;
}
}
}
public void showResults()
{
System.out.println("There are " + totalLetters + " letters and " + (totalWords + 1) + " words.");
}
public static void main(String[] args)
{
var c = new counter();
var s = new Scanner(System.in);
System.out.print("Enter the text string : ");
String str = s.nextLine();
str = str.trim();
s.close();
c.setStr(str);
c.countTotal();
c.showResults();
}
}