- public static void main(String[] args) throws Exception {
- List<String> words = Arrays.asList("hello","hi","hiya","hello world","bye","java","c++","python");
- int count = 0;
- for (String word : words) {
- if (word.startsWith("h"));{
- count++;
- }
- }
- System.out.println("Count " + count);
- }