[백준] 1676번 : 팩토리얼 0의 개수 - C#

강재원·2022년 10월 20일
0

[코딩테스트] C#

목록 보기
134/200



https://www.acmicpc.net/problem/1676

using System;

class Program
{
    static void Main() {
        string s=Console.ReadLine();
        int n=int.Parse(s);
        int count=0;
        while(n>=5){
            count+=n/5;
            n/=5;
        }
        Console.Write(count);
    }
}
profile
개념정리 & 문법 정리 & 알고리즘 공부

0개의 댓글