Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //IFF - Introdução à Programação
- //Slide - Página 15 - Exercício 3
- #include<stdio.h>
- #include<locale.h>
- int main(){
- setlocale(LC_ALL, "Portuguese");
- float p1, p2;
- printf("Entre com a nota da P1 e a nota da P2 respectivamente: ");
- scanf("%f %f",&p1, &p2);
- printf("Sua média foi: %.1f", (p1+p2)/2);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment