MariPNeumann Postado Dezembro 8, 2021 Denunciar Share Postado Dezembro 8, 2021 Diz que meu BLU, YELLOW e RED não foram declarados. Segue o código. Com a tabela ANSI tambem náo tive sucesso. #include <stdio.h> #include <stdlib.h> #include <math.h> #include <locale.h> #include <conio.h> /* run this program using the console pauser or add your own getch, system("pause") or input loop */ int main(int argc, char *argv[]) { setlocale(LC_ALL, "Portuguese"); float nota1,nota2, media; printf("Digite suas notas para saber se foi Aprovado ou Reprovado: "); scanf("%f %f",¬a1, ¬a2); media = (nota1+nota2)/2; if (media >=7){ textcolor(blue); cprintf( "APROVADO " ); } else if (media <7 && media >3){ textcolor(yellow); cprintf( "RECUPERAÇÃO "); } else { textcolor(red); cprintf( "REPROVADO " ) ; } return 0; } Citar Link para o comentário Compartilhar em outros sites More sharing options...
Pergunta
MariPNeumann
Diz que meu BLU, YELLOW e RED não foram declarados.
Segue o código.
Com a tabela ANSI tambem náo tive sucesso.
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <locale.h>
#include <conio.h>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char *argv[]) {
setlocale(LC_ALL, "Portuguese");
float nota1,nota2, media;
printf("Digite suas notas para saber se foi Aprovado ou Reprovado: ");
scanf("%f %f",¬a1, ¬a2);
media = (nota1+nota2)/2;
if (media >=7){
textcolor(blue);
cprintf( "APROVADO " );
}
else if (media <7 && media >3){
textcolor(yellow);
cprintf( "RECUPERAÇÃO ");
}
else
{
textcolor(red);
cprintf( "REPROVADO " ) ;
}
return 0;
}
Link para o comentário
Compartilhar em outros sites
0 respostass a esta questão
Posts Recomendados
Participe da discussão
Você pode postar agora e se registrar depois. Se você já tem uma conta, acesse agora para postar com sua conta.