Revision history of "Solução: Problema da idade em dias (Adriano Queiroz)"

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) 16:21, 3 April 2009200.17.147.2 (Talk). . (1,837 bytes) (+1,837). . (New page: <code lang="c"> #include <stdio.h> #include <time.h> int bissexto(int ano){ if (!(ano%4)) { if (!(ano%100)) { if (!(ano%400)) return 1; else return 0;...)