Guest User

Untitled

a guest
Jun 13th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. cout << "Histograms:" << endl << endl;
  2.  
  3. for (count = 0; count < numChoices; count ++)
  4. {
  5. cout << count + 1 << ": ";
  6.  
  7. even = ( (int) percent + 0.5) / 2;
  8.  
  9. if (even > 0)
  10. {
  11. for (stars = 0; stars < even; stars ++)
  12. {
  13. cout << "*";
  14. }
  15.  
  16. if ((int)(percent + 0.5) % 2)
  17. {
  18. cout << "+";
  19. }
  20. cout << endl;
  21. }
  22. }
Add Comment
Please, Sign In to add comment