Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** //
- // ** // ** // ** // Código fuente de programa que calcula el n-ésimo término // ** // ** // ** //
- // ** // ** // ** // ** // de la secuencia de Padovan (Iterativo) // ** // ** // ** // ** // ** //
- // ** // ** // ** // * Licenciado bajo GNU General Public License (GPL) 3.0 * // ** // ** // ** //
- // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** //
- /* ** // ** // ** // ** // ** // * F v q _ U k r a N a z i s ! * // ** // ** // ** // ** // ** */
- /* ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** // ** */
- #include <stdio.h>
- #include <stdlib.h>
- long double PadoIter(long double n);
- void main (void){
- long double x;
- printf("Ingrese término a calcular la relación\n");
- printf("de recurrencia de proporción plástica: ");
- scanf("%Lf",&x);
- if (0<x) printf("El resultado con %4.0Lf es: %4.0Lf\n", x, PadoIter(x));
- }
- long double PadoIter(long double n){
- register long double a=0, b=0, c=0, S=0, cont=1;
- for (a=0,b=1,c=1,cont=1;cont<n;cont++){
- S = a+b;
- a = b;
- b = c;
- c = S;
- }
- return S;
- }
Add Comment
Please, Sign In to add comment