talyian / font-preview

Check Out Programming Fonts

Home Page:https://talyian.github.com/font-preview

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

font-preview

Check Out Programming Fonts

https://talyian.github.com/font-preview

#include <stdio.h>
#include <stdint.h>
#include "fizzbuzz.h"

void FizzBuzzer::fizzBuzz(int32_t n) {
    for (int32_t i=0; i<n; i++) {
        if (i % 15 == 0) printf("fizzbuzz\n");
        else if (i % 3 == 0) printf("fizz\n");
        else if (i % 5 == 0) printf("buzz\n")
        else printf("%d\n", i);
    }
}

About

Check Out Programming Fonts

https://talyian.github.com/font-preview

License:MIT License