Informática, perguntado por russovytch, 1 ano atrás

faça um programa em linguagem c que mostre a média de um aluno

Soluções para a tarefa

Respondido por juliamco
2
n precisa amigo, use o excel
Respondido por ntlucas23
0

Resposta:

#include <iostream>

#include <math.h>

using namespace std;

int main(){

float NOTA1, NOTA2, MEDIA;

printf("\n\n");

printf("Digite nota 1: ");

scanf("%f", &NOTA1);

printf("Digite nota 2: ");

scanf("%f", &NOTA2);

MEDIA = (NOTA1 + NOTA2) / 2;

printf("Sua media e: %.2f\n", MEDIA);

 

 printf("\n");

 system("pause");

 

}

Explicação:

#include <iostream>  //importar biblioteca

#include <math.h>  //importar biblioteca

using namespace std;

int main(){

float NOTA1, NOTA2, MEDIA;  //declarar variáveis em float

printf("\n\n");  //quebra de linha (2x)

printf("Digite nota 1: ");

scanf("%f", &NOTA1);

printf("Digite nota 2: ");

scanf("%f", &NOTA2);

MEDIA = (NOTA1 + NOTA2) / 2;

printf("Sua media e: %.2f\n", MEDIA);

 

 printf("\n");

 system("pause");

 

}

Perguntas interessantes