Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Да се напише програма која пресметува просечна оцена во семестар. Програмата чита 5 цели броја. Треба да се испечати еден реален број на две децимали, просек на прочитаните броеви. */
- #include <stdio.h>
- #include <stdlib.h>
- int main()
- {
- int a,b,c,d,e;
- float broj;
- scanf("%d%d%d%d%d", &a, &b, &c, &d, &e);
- broj = (a+b+c+d+e) / 5;
- printf("%.2f\n",broj);
- return 0;
- }
- Sample input: Sample output:
- 10 10 10 10 10 10.00
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement