How can I introduce the fibonacci series in an "N" matrix by "N" example:
1 1 2 3
5 . . .
My result is not as expected, it does not show the series in the matrix.
This is my code:
int i, j, n,aux;
int a = 0;
int b = 1;
n = Convert.ToIn...
asked by
27.07.2017 / 15:48