Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //IFF - Introdução à Programação
- //Slide - Página 32 - Exercício 1
- #include<stdio.h>
- #include<string.h>
- #include<locale.h>
- int main(){
- setlocale(LC_ALL,"Portuguese");
- char escolha[3];
- float nota1, nota2;
- do{
- printf("Entre com as duas notas: ");
- scanf("%f %f",¬a1,¬a2);
- printf("Sua média foi %.1f.", (nota1+nota2)/2);
- printf("\nDeseja Realizar nova consulta? ");
- scanf(" %s",&escolha);
- }while (stricmp (escolha, "Sim") == 0);
- }
Advertisement
Add Comment
Please, Sign In to add comment