Lets say int health=6;

I would like to display ***** symbles for the value of health

like int health=6;
display ******

if health were to equal 4
display ****


I would like to do this without using IF statments becouse that would take up a lot of space and take forever if I had like health=100;

what would the best way of doing this be, thanks!