Advertisement
Guest User

Untitled

a guest
Dec 9th, 2016
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. int row_lenght{
  2. int rowlenght = (height*2) -1
  3.  
  4. }
  5.  
  6. int print_spaces{
  7. int spaces = 8;
  8. int rownum = 1;
  9. while (rownum != height){
  10. while (spaces <= 0){
  11. printf(' ');
  12. spaces--;
  13. }
  14. rownum ++;
  15. spaces = height - rownum;S
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement