Skip to content

Instantly share code, notes, and snippets.

@affandes
Created January 1, 2024 08:19
Show Gist options
  • Save affandes/2d63ef86f3ad3ed2baeb97fcb502c046 to your computer and use it in GitHub Desktop.
Save affandes/2d63ef86f3ad3ed2baeb97fcb502c046 to your computer and use it in GitHub Desktop.
Potongan kode program Fibonacci
//...
if(n > 1) {
return F(n-1) + F(n-2);
} else if(n = 1) {
return 1;
} else {
return 0;
}
//...
@Nate2534
Copy link

Nate2534 commented Jan 1, 2024

@Nate2534
Copy link

Nate2534 commented Jan 1, 2024

....loog

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment