package c; |
public class FuZi{ |
public static void main(String[] args){ |
String[] Yue ={ "JAN" , "FED" , "MAR" , "APR" , "MAY" , "JUN" , "JUL" , "AUG" , "SEPT" , "OCT" , "NOV" , "DEC" }; |
int i= 0 ; |
for (String str:Yue){ |
i++; |
System.out.print(str+ " " ); |
if (i== 6 ){ |
System.out .println(); |
} |
} |
} |
} |