Posts by Elson Melo • 11 points
2 posts
-
0
votes4
answers1844
viewsA: Factoring in Javascript
function fatoracao(aNumIn) { var aRetorno = [ [1, 1] ]; pFator = 1; while (aNumIn != 1) { pFator++; pVezes = 0; while (aNumIn % pFator == 0) { pVezes += 1; aNumIn /= pFator; } if (pVezes)…
javascriptanswered Elson Melo 11 -
1
votes6
answers7569
viewsA: Use of global variables and class variables in Delphi
The programming language behind Delphi is Object Pascal whose origin is in structured Pascal, that is, not object oriented. For this reason it exists in the global variable support syntax. But in an…