/* This program prints the names of comic books and a bar graph to show the values of the books. */ #include main() { char c; int value; /* value of comic */ int i; /* loop counter */ while ( scanf( " %c", &c ) != EOF ) { do { /* print title of comic */ printf( "%c", c ); scanf( "%c", &c ); } while ( c != '\n' ); printf( "\n" ); scanf( "%d", &value ); /* get value of comic */ /* print value / 2 stars */ for ( i = 1; i <= value / 2; i++ ) printf( "*" ); printf( "\n" ); } }