Figure 5

Source Code Formatted

     for(a=0; a<9; a++){
         for(b=0; b<9; b++){
             while(a<4){
                 for(c=0; c<9; c++){
                     x = a*b + c;
                     y = a/b;
                     z = a + b + c;
                     printf("\n x=%f y=%f z=%f", x,y,z);
                 }
             }
         }
     }