media linguagem c

Download Media Linguagem c

If you can't read please download the document

Upload: alex-macedo

Post on 14-Sep-2015

3 views

Category:

Documents


1 download

DESCRIPTION

Um pouco de c

TRANSCRIPT

#include #include

main ()

{

float M, a, b, c, d, e;

printf ("Media:");scanf ("%f", M);printf ("Nota a:");scanf ("%f", &a);printf ("Nota b:");scanf ("%f", &b);printf ("Nota c:");scanf ("%f", &c);printf ("Nota d:");scanf ("%f", &d);printf ("Nota e:");scanf ("%f", &e);

M = (a+b+c+d+e)/5;printf ("O valor e %2.f");

}