Ad Code

Java 23- for each loop


Java 23- for each loop

في هذا الفيديو من جافا سنتحدث عن for each loop في جافا JAVA


public class App{
  
  public static void main(String[] args) {
    int[] table= new int[]{2,5,7,4,2};

    for (int tableFor : table) {
      System.out.print(tableFor); // 2 5 7 4 2
    }
  }
}

إرسال تعليق

0 تعليقات

Close Menu