bruteforce :p

On Sat, Oct 1, 2011 at 11:29 PM, geeks <ankurshukla.h...@gmail.com> wrote:

> check dis out
> int fibbevensum()
> {
> static int a=0,b=1;
> static int c,sum;
> c=a+b;
> if(c>1000)
> return sum;
> if(c%2==0)
> sum=sum+c;
> a=b;
> b=c;
> fibbevensum();}
>
>
>  --
> You received this message because you are subscribed to the Google Groups
> "Algorithm Geeks" group.
> To view this discussion on the web visit
> https://groups.google.com/d/msg/algogeeks/-/D7zy55yu6ZEJ.
>
> To post to this group, send email to algogeeks@googlegroups.com.
> To unsubscribe from this group, send email to
> algogeeks+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/algogeeks?hl=en.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Algorithm Geeks" group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.

Reply via email to