顺序结构 略 选择结构 if-elseif-else if-elseswitch 循环结构 whiledo whileforenhanceFor public class enhanceFor { public static void main(String[] args) { int[] num = {10, 20, 30}; //遍历数据元素 for(int x:num){ System.out.println(x); } } }