Revision history of "Solução: Alien Numbers - Codejam (Daniel Rodrigues, Fernando Nunes e Luis Bernardo)"

From AdonaiMedrado.Pro.Br
Jump to: navigation, search

Diff selection: Mark the radio boxes of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

  • (cur | prev) 02:14, 4 June 2009Adonaimedrado (Talk | contribs). . (1,965 bytes) (+1,965). . (New page: <code lang="c"> # include <stdio.h> # include <string.h> int potencia(int x, int y){ int pot=1; for (int i=0;i<y;i++) pot *= x; return pot; } int position(char letter,char ...)