Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. public class World
  2. {
  3.  
  4. public static void main(String[] args)
  5.  
  6. {
  7. int i;
  8. for (i = 0; i < 20; i++)
  9. {
  10. if ( i < 10)
  11. System.out.println("YES");
  12. else
  13. System.out.println("NO");
  14.  
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement