Advertisement
hmcristovao

Lista 01 - exercício 01 - versão excessivamente reduzida

Mar 20th, 2012
395
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // Calcule e exiba a média semestral das notas de um aluno que tirou 8.0 na primeira prova e 10.0 na segunda prova.
  2. // versão simples
  3. #include <stdio.h>
  4. int main() {
  5.    printf("%f", (8.0 + 10.0)/2);
  6.    return 0;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement