Java 16- for loop
package package3;
public class Apple{
/* for (Inistialisations ; Conditions ; Dernieres instructions){
Premières instructions
} */
public static void main(String... args) {
int note=13;
for( ;note>=12 && note<14 ; System.out.println("assez bien"), note++);
for( int i=0, j=10 ; i!=j; i++, j--){
System.out.println("i = "+i+ " et j = "+j);
}
}
}
affiche :
assez bien
i = 0 et j = 10
i = 1 et j = 9
i = 2 et j = 8
i = 3 et j = 7
i = 4 et j = 6
نحن قمنا بانشاء سلسلة من مقاطع ريلز القصيرة العلمية على قناتنا في يوتيوب، واتمنى الحصول على دعمكم ومساندتكم حتى نستمر في نشر هذا المحتوى النافع، رابط القناة من هنا تابعونا.
0 تعليقات