Skip to content

Instantly share code, notes, and snippets.

@kobaken0029
Created May 23, 2016 22:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kobaken0029/abf138d2ec454d8cf1119f8f1c1f0646 to your computer and use it in GitHub Desktop.
Save kobaken0029/abf138d2ec454d8cf1119f8f1c1f0646 to your computer and use it in GitHub Desktop.
Javaでワンライナーfizzbuzz
IntStream.range(1,101).mapToObj(i->(i%15==0?"FizzBuzz":i%5==0?"Buzz":i%3==0?"Fizz":i)).forEach(System.out::println);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment