×

Welcome to TagMyCode

Please login or create account to add a snippet.
0
0
 
0
Language: Java
Posted by: Vasilii Vasilev
Added: May 2, 2014 2:11 PM
Views: 1760
Tags: no tags
  1. char [] vowels = {'a','e','b'};
  2.     for (char ch: vowels){
  3.         System.out.println(ch);
  4.     }