الرجوع
تسجيل الدخول

What is the output of the below code snippet?

int i, j;
for(i = 1; i <= 1; i++) {
    for (j = 1; j <= 2; j++) {
        System.out.printf("%d ", i);
    }
        System.out.println();
}