Advertisement
Guest User

Untitled

a guest
Feb 14th, 2016
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. package kademika;
  2.  
  3. public class FrameThreeThree {
  4.  
  5. public static void main(String[] args) {
  6. int i = 1;
  7. while (true) {
  8. System.out.println(i);
  9. if (i <10) {
  10. i=i+1;
  11. }
  12. else break;
  13. }
  14.  
  15. }
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement