int i; for(i=1; i<=5; i++) { if(i % 2) printf("*"); else continue; printf("#"); printf("\n"); }
Copyright ©