Advertisement
Guest User

Untitled

a guest
Feb 21st, 2018
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1.  
  2. public class kladdeee {
  3. public static void main (String[] args) {
  4. String poop = "";
  5. poop = poop + "p";
  6. if (poop.equals("p")) {
  7. for (int i=1; i< 10; i++) {
  8. poop = poop + "o";
  9. }
  10. }
  11. poop = poop + "p";
  12. System.out.print(poop);
  13.  
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement