https://st-lab.tistory.com/273 [백준] 1546번 : 평균 - [C++]https://www.acmicpc.net/problem/1546 1546번: 평균 첫째 줄에 시험 본 과목의 개수 N이 주어진다. 이 값은 1000보다 작거나 같다. 둘째 줄에 세준이의 현재 성적이 주어진다. 이 값은 100보다 작거나 같은 음이st-lab.tistory.com #include #include using namespace std;int main(){ ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); // N: 시험 본 과목 개수 int N; // 모든 과목 점수 합산을 저장할 변수 double sum = 0; // 과목 개수를 입력받음 cin >..