EmmettMilligan

CPP Drawbox Enhanced

Nov 12th, 2019
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. cout<<"Please enter the symbol:";
  2. char ryo;
  3. cin>>ryo;
  4. cout<<"Please enter the width:";
  5. int wid;
  6. cin>>wid;
  7. cout<<"Please enter the height:";
  8. int len;
  9. cin>>len;
  10. cout<<"Please enter the x-coordinate:";
  11. int ex;
  12. cin>>ex;
  13. cout<<"Please enter the y-coordinate:";
  14. int why;
  15. cin>>why;
  16. gotoxy(ex,why-2);
  17. for(int counter=0;counter<len;counter++){
  18. cout<<endl;
  19. gotoxy(ex,why+3-counter);
  20. cout<<ryo;
  21. for(int counter=0;counter<wid-1;counter++){
  22. cout<<ryo;
  23. }
  24. }
Add Comment
Please, Sign In to add comment