Skip to content

Instantly share code, notes, and snippets.

View emersonp's full-sized avatar

Parker Harris Emerson emersonp

View GitHub Profile
@emersonp
emersonp / gist:2907786760627f4da916
Created May 6, 2014 19:27
Epicodus - Fizz Buzz - Emerson
import static java.lang.System.out;
public class FizzBuzz {
public static void main( String[] args ) {
maxFizzBuzz = 100;
out.println();
out.println();
for ( int n = 1 ; n <= maxFizzBuzz ; n = n + 1 ) {