الرجوع
تسجيل الدخول
int x = 10;
if (x > 15)
    if (x < 20)
        System.out.println("A");
else
    System.out.println("B");

,