You are on page 1of 1

main()

{
int count;
{
for(count=1; count<=100; count++)
if(count%2==0)
continue;
printf("%d",count);
}
}

You might also like