float P1;
float P2;
float PL;
float NP1;
float NP2;
float NL;
float S;
//Declaração de variaveis
//float usa-se para números que tenha virgula
void setup() {
Serial1.begin(115200);
P1=8.9;
P2=6.7;
PL=4.4;
// valor declarado
NP1= P1 * 0.3;
NP2= P2 * 0.5;
NL= PL * 0.2;
// calculo de cada nota
S= NP1 + NP2 + NL;
// Soma das 3 notas
Serial1.print("Nota: ");
Serial1.println(S);
Serial1.print("Essa é a média desse aluno");
// Valor mostrado na tela Serial
}
void loop() {
// put your main code here, to run repeatedly:
delay(1); // this speeds up the simulation
}