Findryan

Untitled

Nov 8th, 2016
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. public class While
  2. {
  3. public static void main(String[]args)
  4. {
  5. int n=0;
  6. while(n!=9)
  7. {
  8. System.out.println(n);
  9. n++;
  10. }
  11. }
  12. }
Add Comment
Please, Sign In to add comment