Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 13th, 2012  |  syntax: None  |  size: 0.36 KB  |  hits: 16  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. public static void main(String[] args) throws Exception {
  2.         List<String> words = Arrays.asList("hello","hi","hiya","hello world","bye","java","c++","python");
  3.         int count = 0;
  4.         for (String word : words) {
  5.             if (word.startsWith("h"));{
  6.                 count++;
  7.             }
  8.         }
  9.         System.out.println("Count " + count);
  10.     }