“factoriel en c” Réponses codées

Programme factoriel C Utilisation pour Loop

#include<stdio.h>
int main(){
  int i,f=1,num;
 
  printf("Enter a number: ");
  scanf("%d",&num);
 
  for(i=1;i<=num;i++)
      f=f*i;
 
  printf("Factorial of %d is: %d",num,f);
  return 0;
}
Spirit RJ

factoriel en c

/*
Factorial Program in C: Factorial of n is the product of all positive 
descending integers. Factorial of n is denoted by n!. 
For example:
5! = 5*4*3*2*1 = 120  
3! = 3*2*1 = 6  
*/

#include<stdio.h>  
int main()    
{    
 int i,fact=1,number;    
 printf("Enter a number: ");    
  scanf("%d",&number);    
    for(i=1;i<=number;i++){    
      fact=fact*i;    
  }    
  printf("Factorial of %d is: %d",number,fact);    
return 0;  
}   
Tiny Coders

factoriel d'un nombre en c

#include<stdio.h>
void main(){

    int num, i, mul;
    num = 5;
    mul = 1;
    for(i = 1; i <= 5; i++){
        mul = mul * i;
    }
    printf("%d",mul);

}
Excited Earthworm

factoriel d'un nombre en c

factorial
Clean Cassowary

Réponses similaires à “factoriel en c”

Questions similaires à “factoriel en c”

Plus de réponses similaires à “factoriel en c” dans C

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code