logoISU  

CS256 - Principles of Structured Design

Fall 2021

Displaying ./code/sternflCode/loop3.c

#include<stdio.h>
int main() {
  for(int x=0; x<10; x++) {
    printf("%d\n", x);
    if (x%3==0) continue;  //go back to the update
    printf("Hi, Mom!\n");
  }
}