Computer Science, asked by jashs6396, 2 months ago

Find the output
for(i=10; i>=5; i--)
{
if(i%2==1)
{
System.out.print(i);
}
}​

Answers

Answered by atrs7391
19

Given Program:

for(i=10; i>=5; i--)

{

if(i%2==1)

{

System.out.print(i);

}

}​

Output:

975

Similar questions