-
백준 10039 - 평균 점수백준 algorithm 2020. 3. 16. 00:16반응형
#include <iostream> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr); int sum=0; int tmp; for(int i=0; i< 5; i++) { cin>>tmp; if(tmp<40)tmp=40; sum+=tmp; } cout<< sum/5 <<'\n'; return 0; }
반응형'백준 algorithm' 카테고리의 다른 글
백준 6588 - 골드바흐의 추측 (0) 2020.03.16 백준 9613 - GCD 합 (0) 2020.03.16 백준 2004 - 조합 0의 개수 (0) 2020.03.14 백준 1929 - 소수구하기 (0) 2020.03.13 백준 2609 - 최대공약수와 최소공배수 (0) 2020.03.13