Computer Science, asked by Alwingeo25, 8 months ago

find the output of the following code in c++
.
for(i=1 ; i<=10 ; i++)
{
if(i%2==0)
continue;
cout<<i<<"\t";
}
.
The correct answer will be marked as brainiest......Please fast​

Answers

Answered by bktbunu
1

Explanation:

only the odd numbers from 1 to 10 will be displayed with tabs in between each pair of odd numbers

output:

1 3 5 7 9

Similar questions