Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. package PierwszyPakiecik;
  2.  
  3. public class While {
  4. public static void main(String[] args) {
  5. int liczba = 0;
  6.  
  7. do{System.out.println(liczba);
  8. liczba++;
  9. }
  10. while(liczba<=100);
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement