Computer Science, asked by adeshwal9999gmail, 1 month ago

Write the output of following program segments:
(a) [2]
for(int i=10;i>=5; i--)
{
System.out.println(“i=”+i);
}
(b) [3]
int m = 10;
int n = 7;
while(m%n >0)
{
System.out.println(m + “ “+n);
m++;
n+=2;
}

Answers

Answered by soumalya60
0

Answer:

please mark me as the brainliast

Similar questions