Advertisement
Guest User

Untitled

a guest
Dec 16th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. public class WhileLoop {
  2. public static void main(String[] args) {
  3. int wartosc = 1;
  4.  
  5. while(wartosc < 10)
  6. {
  7. System.out.println(wartosc);
  8. wartosc += 1;
  9. }
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement