-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDayTwentyTwo.java
31 lines (26 loc) · 943 Bytes
/
DayTwentyTwo.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
public class DayTwentyTwo {
public static void count(String str, int length) {
int vowels = 0;
int consonants = 0;
int whitespaces = 0;
str = str.toLowerCase(); // converting given string to lowercase
for (int i = 0; i < length; i++) {
char ch = str.charAt(i);
if (ch == 'a' || ch == 'e' || ch == 'i' || ch == 'o' || ch == 'u')
vowels++;
else if (ch >= 'a' && ch <= 'z')
consonants++;
else if (ch == ' ')
whitespaces++;
}
System.out.println("Vowels: " + vowels);
System.out.println("Consonants: " + consonants);
System.out.println("White spaces: " + whitespaces);
}
public static void main(String args[]) {
String str = "Take u forward is Awesome";
int length = str.length();
// call the function
count(str, length);
}
}