In: Computer Science
What is the value of n after this code runs?
1 Point
int n = 0;
int j = 7;
if ((j!=0) && (n < 25))
{
n = 1;
if (j > 4)
{
n = 2;
}
else
{
n = 3;
}
}
else
{
n = 4;
if (j%2 >= 2)
{
n = 5;
}
else
{
n = 6;
}
}