Advertisement
Guest User

.

a guest
Oct 25th, 2014
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. #include <string>
  2. #include <iostream>
  3.  
  4. using namespace std;
  5.  
  6. int main ()
  7. {
  8. string password;
  9. while ( true )
  10. {
  11. for (int i = 0; i < 3; i++)
  12. {
  13. if (i == 2)
  14. {
  15. break;
  16. }
  17. }
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement