Skip to content

Instantly share code, notes, and snippets.

@Sharma96
Created July 19, 2017 19:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Sharma96/8fab1742805e525e4d73f9bcc7ca7503 to your computer and use it in GitHub Desktop.
Save Sharma96/8fab1742805e525e4d73f9bcc7ca7503 to your computer and use it in GitHub Desktop.
void fun(int n){
if(n == 0)
return;
if(n>=1&&n<=5){
fun(n-1);
}
else{
fun(n/2);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment