Go Back   Champions of Regnum > Español > La Taberna

La Taberna Un lugar para conversar sobre casi cualquier tema

Reply
 
Thread Tools Display Modes
Old 05-07-2008, 10:32 AM   #41
sunos
Count
 
sunos's Avatar
 
Join Date: Jan 2007
Location: Rosario
Posts: 1,440
sunos has a spectacular aura aboutsunos has a spectacular aura about
Default

Quote:
Originally Posted by arlick
2178309

Code:
def fibo (num):
     if(num == 0):
             return 0
     if(num == 1):
             return 1
     else:
             return (fibo(num -1) + fibo(num -2))
sunos se hace un poco lento en numeros altos D
para que hiciste otro prog? o.0
3524578

Code:
#include <stdio.h>
int fibo(a)
{
        if (a==0){return 0;}
        if (a==1){return 1;}
        else
        {
                return (fibo(a-1)+fibo(a-2));
        }
}
int main()
{
        int a;
        a=1;
        while(a<40)
        {
        printf("%d ,%d \n", fibo(a),a);
        a++;
        }
        return 0;
}
me cago en iso c99 que no me deja usar un for en el main >.<
__________________
Usuario GNU/linux registrado Nº450915
"Sólo hay un problema con el sentido común: que no es demasiado común" -- Milt Bryce
sunos no ha iniciado sesión   Reply With Quote
Old 05-07-2008, 10:38 AM   #42
magnet
Count
 
magnet's Avatar
 
Join Date: Jul 2007
Location: France
Posts: 1,416
magnet is on a distinguished road
Default

Quote:
Originally Posted by sunos
para que hiciste otro prog? o.0
3524578

Code:
#include <stdio.h>
int fibo(a)
{
        if (a==0){return 0;}
        if (a==1){return 1;}
        else
        {
                return (fibo(a-1)+fibo(a-2));
        }
}
int main()
{
        int a;
        a=1;
        while(a<40)
        {
        printf("%d ,%d \n", fibo(a),a);
        a++;
        }
        return 0;
}
me cago en iso c99 que no me deja usar un for en el main >.<
Conoces "dynamic programming"?
Mhh.. no sé como decir en castellano ... pero ese program es muy mal
__________________
magnet no ha iniciado sesión   Reply With Quote
Old 05-07-2008, 10:42 AM   #43
sunos
Count
 
sunos's Avatar
 
Join Date: Jan 2007
Location: Rosario
Posts: 1,440
sunos has a spectacular aura aboutsunos has a spectacular aura about
Default

Quote:
Originally Posted by magnet
Conoces "dynamic programming"?
Mhh.. no sé como decir en castellano ... pero ese program es muy mal
ese programa apesta
pero bueno, era una forma rapida de tener la secuencia de fobonacci :-P
no tiene sentido ponerse a hacer algo bien por eso ^^

EDIT:5702887
__________________
Usuario GNU/linux registrado Nº450915
"Sólo hay un problema con el sentido común: que no es demasiado común" -- Milt Bryce
sunos no ha iniciado sesión   Reply With Quote
Old 05-07-2008, 12:39 PM   #44
tiranet
Banned
 
tiranet's Avatar
 
Join Date: Sep 2007
Location: Buscando mi movil...
Posts: 255
tiranet is on a distinguished road
Default

9227465
le acerte?
tiranet no ha iniciado sesión   Reply With Quote
Old 05-07-2008, 01:11 PM   #45
theotherhiveking
Count
 
Join Date: May 2007
Posts: 1,452
theotherhiveking has a spectacular aura abouttheotherhiveking has a spectacular aura abouttheotherhiveking has a spectacular aura about
Default

Quote:
Originally Posted by sunos
377

PD: para algun otro tramposo como yo

Code:
#include <stdio.h>
int fibo(a)
{
        if (a==0){return 0;}
        if (a==1){return 1;}
        else
        {
                return (fibo(a-1)+fibo(a-2));
        }
}
int main()
{
        printf("%d\n", fibo(14));
        return 0;
}

Code:
def fib(n):    # write Fibonacci series up to n
...     """Print a Fibonacci series up to n."""
...     a, b = 0, 1
...     while b < n:
...         print b,
...         a, b = b, a+b
__________________
⎺⎺⎺⎺⎺⎺⎺⎺⎺⎺
theotherhiveking no ha iniciado sesión   Reply With Quote
Old 05-07-2008, 01:31 PM   #46
SanguchedeSalame
Banned
 
SanguchedeSalame's Avatar
 
Join Date: Dec 2007
Location: donde amaneció el ROCK AND ROLL
Posts: 634
SanguchedeSalame is on a distinguished road
Default

VEINTIKINCE!!!!
SanguchedeSalame no ha iniciado sesión   Reply With Quote
Old 05-07-2008, 05:32 PM   #47
figo91
Initiate
 
figo91's Avatar
 
Join Date: Dec 2006
Location: La Matanza, Bs As
Posts: 150
figo91 is on a distinguished road
Default

14930352

VAMOS VAMOS Q NO DECAIGA!!

no usen esos programas truchos che!, ejerciten el cerebro
__________________
Iron Maiden - Bárbaro
Dark Brotherhood
Iron Maiden wants you for dead
figo91 no ha iniciado sesión   Reply With Quote
Old 05-07-2008, 05:35 PM   #48
Rubina
Pledge
 
Rubina's Avatar
 
Join Date: May 2008
Location: en tus sueños :)
Posts: 8
Rubina is on a distinguished road
Default

0,1,1,2,1,3 (?)
__________________
*****Princesita Rubina*****
mi deber es que tu barrita de vida no baje mas de la mitad

Drakogrox
Rubina no ha iniciado sesión   Reply With Quote
Old 05-07-2008, 05:39 PM   #49
tiranet
Banned
 
tiranet's Avatar
 
Join Date: Sep 2007
Location: Buscando mi movil...
Posts: 255
tiranet is on a distinguished road
Default

24157817
creo k es asi....
tiranet no ha iniciado sesión   Reply With Quote
Old 05-07-2008, 05:40 PM   #50
Drako
Count
 
Drako's Avatar
 
Join Date: Oct 2006
Posts: 1,369
Drako will become famous soon enoughDrako will become famous soon enough
Default

Jajaja ya fue esto, podemos seguir así infinitamente
Drako no ha iniciado sesión   Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 07:39 PM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
NGD Studios 2002-2024 © All rights reserved