Posts by Will Garcia • 1 point
2 posts
-
0
votes1
answer117
viewsA: Adding lines from an array to a Window Form list view
Solution for (int linha = 0; linha < n; linha++) { string linhaListBox = ""; for (int coluna = 0; coluna < n; coluna++) { if (triangulo_pascal[linha, coluna] != 0 &&…
-
0
votes1
answer117
viewsQ: Adding lines from an array to a Window Form list view
I am doing a project to solve the binomial of Newton, this part is easy I managed to solve the problem on the console the way I wanted, now I am migrating to Windows Form and I have a problem to…