도움이 된 질문 글 https://www.acmicpc.net/board/view/39870 글 읽기 - 1676 1%가 안 닿습니다 도움 부탁드립니다. 댓글을 작성하려면 로그인해야 합니다. www.acmicpc.net 문제 https://www.acmicpc.net/problem/1676 1676번: 팩토리얼 0의 개수 N!에서 뒤에서부터 처음 0이 아닌 숫자가 나올 때까지 0의 개수를 구하는 프로그램을 작성하시오. www.acmicpc.net 예제 입력 1 복사 10 예제 출력 1 복사 2 #include using namespace std; int twoset[501]; int fiveset[501]; int tenset[501]; void makesumset(int n) { int stnd = 2..