Advertisement
Guest User

Untitled

a guest
May 25th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. void Load_it_virtually(){
  2. int i,j=0,k;
  3. for(i=1,j=79;i<80,j>0;i++,j--){
  4. for(k=1;k<25;k++){
  5. if(j>=76){
  6. gotoxy(j,k);
  7. cout<<'/';
  8. }
  9. else{
  10. gotoxy(j+4,k);
  11. cout<<' ';
  12. gotoxy(j,k);
  13. cout<<'/';
  14.  
  15. }
  16. if(i<=4){
  17. gotoxy(i,k);
  18. cout<<'/';
  19. }
  20. else{
  21. gotoxy(i-4,k);
  22. cout<<' ';
  23. gotoxy(i,k);
  24. cout<<'/';
  25. }
  26.  
  27. }
  28. delay(100);
  29. }
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement