Skip to content

Instantly share code, notes, and snippets.

@Pharaoh00
Last active September 15, 2019 19:03
Show Gist options
  • Save Pharaoh00/8f97956ae5acbbbeb204e15bfb89fa2b to your computer and use it in GitHub Desktop.
Save Pharaoh00/8f97956ae5acbbbeb204e15bfb89fa2b to your computer and use it in GitHub Desktop.
float factRecursiva(int num){
if(num == 0){
return 1;
}
else {
return num * factRecursiva(num - 1);
}
}
float cosAprox(int num){
if(num == 0){
return 1;
}
else {
return cosAprox(num-1) + pow(-1,num)*(1/factRecursiva(2*num));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment