반응형
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #include <iostream> #include <cstdio> using namespace std; int main() { int sum = 0, score; for(int i = 0; i < 5; i++) { scanf("%d", &score); if(score <= 40) sum+=40; else sum += score; } printf("%d\n", sum / 5); return 0; } | cs |
'알고리즘 > 백준' 카테고리의 다른 글
5622번 다이얼 (0) | 2018.10.09 |
---|---|
10809번 알파벳 찾기 (0) | 2018.10.09 |
8958번 OX퀴즈 (0) | 2018.10.09 |
4344번 평균은 넘겠지 (0) | 2018.10.09 |
2920번 음계 (0) | 2018.10.09 |