14 lines
177 B
C

#include <stdio.h>
int main(void)
{
int i;
for (i=1; i<=10; i++)
{
if(i%2 == 0)
continue;
printf ("i = %d\n", i);
}
return 0;
}