Advertisement
Guest User

Untitled

a guest
Aug 25th, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. package fizz_buzz;
  2.  
  3. public class ball_clock_calc {
  4.  
  5. public void main(String[] args){
  6.  
  7. for(int i=0; i<=100; i++){
  8. if (i%3==0 && i%5==0){
  9. System.out.println("fizzbuzz");
  10. }
  11. if (i%3==0 && i%5!=0){
  12. System.out.println("fizz");
  13. }
  14. if (i%3!=0 && i%5==0){
  15. System.out.println("buzz");
  16. }
  17. else{
  18. System.out.println(i);
  19. }
  20. }
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement