All public logs

From Applied Science

Combined display of all available logs of Applied Science. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 20:10, 23 January 2025 Wikiadmin talk contribs created page Exercícios comentados (Created page with "* '''Os dois algoritmos abaixo tentam calculuar <math>x^n</math>. Ambos estão errados. Explique o erro de cada um:''' {| class="wikitable" |style="width: 22em;" |<source lang="c">for (i = 1; i <= n; i++) x = x * i;</source>|| Está multiplicando por um contador que aumenta a cada vez. Para x = 4, temos 4 * 1, depois 4 * 2, depois 8 * 3, ... |- |style="width: 22em;"|<source lang="c">for (i = 0; i < n; i++) x = x * x;</source> || Está calculando o quadrado do número, d...") Tag: wikieditor