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