#include int main() { int x=0; for(;;) { x++; if(x<=5) { printf("%d, ",x); continue; } printf("%d is greater than 5!\n",x); break; } return(0); }