Advertisement
EmmettMilligan

.h Boxes With Parameters

Nov 22nd, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. // base code file
  2.  
  3. #include "Emmett.h"
  4.  
  5. main()
  6. {
  7. srand(time(NULL));
  8. // write code here
  9. for(int boxnum = 0;boxnum<5;boxnum++){
  10. drawbox(3,boxnum*6,10,5,'$');
  11. }
  12. // leave the following line in all programs
  13.  
  14. getch();
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement