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 Fibonacci (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>
- #include <string.h>
- #include <errno.h>
- long double FiboIter(long double n);
- void main(int argc, const char **argv){
- const long double aux;
- if (argc != 2){
- extern int errno;
- errno = 22;
- fprintf(stderr, "Uso: %s <NÚMERO NATURAL>\n Code error: %d\n %s\n",*(argv+0), errno, strerror(errno));
- exit(EXIT_FAILURE);
- }
- sscanf(*(argv+1), "%Lf", (long double*)&aux);
- printf("\n El resultado con %4.0Lf es: %4.0Lf \n", aux, FiboIter(aux));
- }
- long double FiboIter(long double n){
- long double a=0, b=0, S=0, cont=1;
- for (a=0,b=1;cont<n;cont++){
- S = a+b;
- a = b;
- b = S;
- }
- return S;
- }
Add Comment
Please, Sign In to add comment