Skip to content

Instantly share code, notes, and snippets.

View Benhgift's full-sized avatar

Ben Gift Benhgift

View GitHub Profile
//returns 3 if divisible by 3, 5 if divisible by 5, and 0 if neither and 10 if both
int fizzBuzz(int num) {
int temp;
if(num%3 == 0)
temp = 3;
if(num%5 == 0)
temp += 5;
if(temp == 3)
return temp;
else if(temp == 5)