Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** //
- // ** // ** // ** // Código fuente de programa que calcula el factorial de un // ** // ** // ** //
- // ** // ** // ** // ** // número natural utilizando recursividad // ** // ** // ** // ** // ** //
- // ** // ** // ** // * Licenciado bajo GNU General Public License (GPL) 3.0 * // ** // ** // ** //
- // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** //
- /* ** // ** // ** // ** // ** // * F v q _ U k r a N a z i s ! * // ** // ** // ** // ** // ** */
- /* ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** */
- #include <stdio.h>
- long double fact(long double a){
- if (0<a) return (a==1)?1:a*fact(a-1);
- }
- void main(void){
- long double x;
- printf("Ingrese factorial a calcular\n");
- scanf("%Lf", &x);
- if (0<x) printf("El factorial de %4.0Lf es %4.0Lf \n", x, fact(x));
- }
Add Comment
Please, Sign In to add comment