Revision history of "Laboratório de Programação I (UFBA 2009.1): Prova AVII - Respostas do professor"

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:03, 3 July 2009Adonaimedrado (Talk | contribs). . (2,477 bytes) (+2,477). . (New page: == Problema do checksum (Dificuldade 1) == <code lang="c"> #include <stdio.h> int contar_uns(unsigned char b) { int i, r=0; for(i=0;i<8;i++,b>>=1) r += b & 1; return r; } int contar...)