Guest User

Untitled

a guest
Nov 29th, 2019
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.42 KB | None | 0 0
  1. #include<stdio.h>
  2. #include<stdlib.h>
  3.  
  4. main(){
  5.     float notas[5], soma = 0;
  6.    
  7.     for(int i = 0; i < 5; i++){
  8.         printf("Digite a %da nota do aluno: ", i + 1);
  9.         scanf("%f", &notas[i]);
  10.         soma += notas[i];
  11.     }
  12.    
  13.     system("cls");
  14.    
  15.     printf("Media do aluno: %.2f\n", soma / 5);
  16.     for(int i = 0; i < 5; i++) printf("%da Nota: %.2f\n", i + 1, notas[i]);
  17.     printf("Soma das notas: %.2f\n", soma);
  18.    
  19.     system("pause");
  20.     return 0;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment