Find the output
for(i=10; i>=5; i--)
{
if(i%2==1)
{
System.out.print(i);
}
}
Answers
Answered by
19
Given Program:
for(i=10; i>=5; i--)
{
if(i%2==1)
{
System.out.print(i);
}
}
Output:
975
Similar questions