djelad1

Untitled

Nov 22nd, 2014
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. for (i = 0; i < maxIndex; i++)
  2. {
  3. for (j = 0; j < SIZE3; j++)
  4. {
  5.  
  6. if (arr[j] >= maxIndex)
  7. {
  8. cout << "* ";
  9. }
  10. else
  11. {
  12. cout << " ";
  13. }
  14. }
  15. maxIndex--;
  16. cout << endl;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment