Guest User

Untitled

a guest
Jun 18th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. package fizzbuzz;
  2.  
  3. public class FizzBuzzTest {
  4. public static void main(String[] args) {
  5. for (String s : new FizzBuzz(1, 100)) System.out.println(s);
  6. }
  7. }
Add Comment
Please, Sign In to add comment