Advertisement
schreiberstein

Zombie-Turtles

Jul 31st, 2011
274
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.45 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main() {
  4.     int turtles = 10;
  5.     printf("\n 10 zombie turtles are flying through the air. \n");
  6.    
  7.     while (turtles > 2) {
  8.     turtles--;
  9.     printf("\n %i zombie turtles are flying through the air. Alex came and 1 turtle flew away :-(", turtles);
  10.         }
  11.    
  12.     turtles--;
  13.     printf("\n %i zombie turtle is flying through the air. Alex came and the turtle flew away :-(", turtles);
  14.     printf("\n \n NO MORE ZOMBIES! \n");
  15.    
  16.     return 0;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement