Skip to content

Instantly share code, notes, and snippets.

@NikolaKirev
Last active December 15, 2015 19:08
Show Gist options
  • Save NikolaKirev/5308603 to your computer and use it in GitHub Desktop.
Save NikolaKirev/5308603 to your computer and use it in GitHub Desktop.
Objective-C: FizzBuzz
- (void)fizzBuzzToNumber:(NSInteger)endNumber {
for (NSInteger i=1; i <= endNumber; i++) {
if (i % 3 == 0) {
if (i % 5 == 0) {
NSLog(@"FizzBuzz");
}else {
NSLog(@"Fizz");
}
}else if (i % 5 == 0) {
NSLog(@"Buzz");
}else {
NSLog(@"%i",i);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment