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

,