Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. public class tes41
  2. {
  3. public static void main(String[] args)
  4. {
  5. int counter = 217;
  6.  
  7. do
  8. {
  9. if (counter < 1834)
  10. counter = counter + 7;
  11.  
  12. else
  13. break;
  14. System.out.println(counter);
  15.  
  16.  
  17. }
  18. while (counter < 1840);
  19.  
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement