Computer Science, asked by syedahmedusman1, 4 months ago

Write the output of the following program. [3]
int i = 1,j = 20,k = 31;
while (i < j)
{
k += (i * j);
i = i * 2;
j--;
}
System.out.println("i = " + i + " j = " + j + " k = " + k);

Answers

Answered by ritujoshi82
0

Answer:

mention one question at a time

Explanation:

Similar questions