Advertisement
EmmettMilligan

.h file Box & Line Parameter Methods

Nov 22nd, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 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. // leave the following line in all programs
  10.  
  11. for(int boxnum = 0;boxnum<5;boxnum++){
  12. drawbox(3,boxnum*4,10,boxnum,'$');
  13. }
  14. getch();
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement