Dot Net Funda provides content about Dot Net Concept From Bsic to advance.
1. Small Program/code
2.Problem Solution (Post your Problem and get solution of your problem)
3. Give suggestion about our Post.
Monday, September 17, 2018
Fibonacci series in c# :
int kk = 1, jj = 0, yy = 0; Console.Write(yy); for (int i = 0; i < 10; i++) { jj = kk; kk = yy; yy = kk + jj; Console.Write("," + yy); }
No comments:
Post a Comment