Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- #define N 5
- int main()
- {
- float notas;
- int i, maior = 0, v = 0;
- for (int i = 0; i < N; i++)
- {
- printf("Digite nota aqui: ");
- scanf("%f",¬as);
- if (notas > maior)
- {
- maior = notas;
- v = 0;
- }
- if (notas == maior)
- {
- v++;
- }
- }
- printf("A nota maior foi %f que apareceu %d vezes\n",maior,v);
- system("pause");
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement