Advertisement
Guest User

Untitled

a guest
Feb 27th, 2015
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.38 KB | None | 0 0
  1. public class hello
  2. {
  3.  public static void main(String[] args)
  4.  {
  5.  System.out.println("Nie powiemy „Witaj, świecie!”");
  6.  for (int i = 1; i <= 100; i++)
  7.  {
  8.      if (i%3==0)
  9.      {
  10.          if (i%5==0)
  11.              System.out.println("fizzbuzz");
  12.          else
  13.              System.out.println("fizz");
  14.      }
  15.          else if (i%5==0)
  16.          System.out.println("buzz");
  17.         else
  18.          System.out.println(i);
  19.  }
  20.  
  21.  
  22.  
  23.  }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement