ما الفرق بين While و Do..While
public class Main {
public static void main(String[] args) {
int count=1;
while (count <= 5){
System.out.println("The mark now is " +count);
count++;
}
}
}
public static void main(String[] args) {
int count=1;
while (count <= 5){
System.out.println("The mark now is " +count);
count++;
}
}
}
الفرق أن في While تحسب قيمة count في الأعلى اي يكون اللوب في بداية البرنامج بعكس Do..While الذي يكون في النهاية
ليست هناك تعليقات:
إرسال تعليق