Click here to Skip to main content
15,908,841 members

Comments by dukenukem18 (Top 2 by date)

dukenukem18 29-Mar-11 16:12pm View    
lazy homeworker ? i m trying OK ?? i'm not good at programming. i tried some ways to solve that and i already completed most of it. at the end, i just wrote here to take some advice to solve a part of my problem, and i was just looking for an advice NOT code or wikipedia link(!) !
dukenukem18 28-Mar-11 21:09pm View    
hi , i already searched for it but most of them use common way (following code block) or "long double" type.

<pre>
int fib(int n)
{
if (n <= 2)
return 1
else
return fib(n-1) + fib(n-2)
}
</pre>

this is not what i'm looking for. i need to reimplement this code for 128bit numbers according to the conditions i already wrote in my question.