Jump to content
Fórum Script Brasil
  • 0

(Resolvido) C----> Fatorial usando recursividade


Flames

Question

#include <stdio.h>

int fatorial(int numero);

main(){
       int num;
       printf("Entre com o numero de elementos da sequência: ");
       scanf("%d", &num);
       printf("O fatorial de %d e %d", num, fatorial(num));

}

int fatorial(int numero){
    int x;
       if(numero==1)
          return 1; /*return 1 ou numero e a mesma coisa sai do programa e faz as multiplicacoes...
4*fatorial de 3.
4*3*fatorial de 2.
4*3*2*fatorial de 1.
4*3*2*1*fatorial de 0. */
       else
         x=numero*fatorial(numero-1);
         return x;
}

A minha duvida é como contar quantas vezes ele entra na recursividade (tipo contador) eu já tentei meter um contador mas aquilo está a fazer um ciclo implicito e não sei como o contar...

Alguém me poderia ajudar?

Edited by Flames
Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0
Tente colocar uma variável global, e cada vez que entrar na função acrescentar +1;

Ex:

int iCont = 0;

int main.....

int fatorial(int numero){

int x;

iCont++;

}

Já resolvi a questao Matsu pelos vistos usando ponteiro também resolve :) well sou obrigado a tal xD

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...