/*---------------------------------------------------------- Elizabeth Sklar MC140.0X 15 September 2000 This program prints out one or more death stars, based on input from the user. The user specifies the size of each death star and the number of stars to print. ----------------------------------------------------------*/ #include /*--------------------------------------------------------*/ /* print_death_star */ /* */ /* This function prints out a death star whose size is */ /* based on the input argument "size". */ /* */ /*--------------------------------------------------------*/ int print_death_star ( int size ) { int i, j; // loop counters // this prints the top of the death star printf( "/" ); for ( j=0; j