2015-04-20 15:36:01 -07:00
|
|
|
|
//: control/ForEachString.java
|
2015-05-29 14:18:51 -07:00
|
|
|
|
// <20>2015 MindView LLC: see Copyright.txt
|
2015-04-20 15:36:01 -07:00
|
|
|
|
|
|
|
|
|
public class ForEachString {
|
|
|
|
|
public static void main(String[] args) {
|
|
|
|
|
for(char c : "An African Swallow".toCharArray() )
|
|
|
|
|
System.out.print(c + " ");
|
|
|
|
|
}
|
|
|
|
|
} /* Output:
|
|
|
|
|
A n A f r i c a n S w a l l o w
|
|
|
|
|
*///:~
|