c# Programming Glossary: fibo
Try-catch speeding up my code? http://stackoverflow.com/questions/8928403/try-catch-speeding-up-my-code avg Console.ReadKey static long Fibo int n long n1 0 n2 1 fibo 0 n for int i 1 i n i n1 n2 n2 fibo fibo n1 n2 return fibo.. int n long n1 0 n2 1 fibo 0 n for int i 1 i n i n1 n2 n2 fibo fibo n1 n2 return fibo On my computer this consistently prints.. n long n1 0 n2 1 fibo 0 n for int i 1 i n i n1 n2 n2 fibo fibo n1 n2 return fibo On my computer this consistently prints out..
|