Revision history of "Solução: Problema das seqüências alternadas (Eduardo Ramos)"

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) 17:46, 5 June 2009200.17.147.2 (Talk). . (565 bytes) (+565). . (New page: <code lang="c"> #include <stdio.h> #include <stdlib.h> int comparar(const void *a, const void *b) { return *(int *)a-*(int *)b; } int compararInverso(const void *a, const void *b) { ...)