Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. tu por ejemplo haces:
  2.  
  3. while(lo que sea) {
  4. loquesea;
  5. loquesea;
  6. }
  7.  
  8. pues no tendrías que programar así, tendría que ser más estructurado:
  9.  
  10. while(loquesea)
  11. {
  12. asdfasdf;
  13. asdfasdf;
  14. }
  15.  
  16. if(loquesea)
  17. {
  18. asdfasfd;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement