백준 c++ 11170 0의 개수

11170 0의 개수

문제풀이

#include <iostream>
#include <string>
using namespace std;
void fast_io(void)
{
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    cout.tie(NULL);
}
int main()
{
    fast_io();
    int t;
    cin >> t;
    while (t--)
    {
        int n, m, cnt = 0;
        cin >> n >> m;
        for (int i = n; i <= m; i++)
        {
            string str = to_string(i);
            for (int j = 0; j < str.length(); j++)
            {
                if (str[j] == '0')
                    cnt++;
            }
        }
        cout << cnt << "\n";
    }
}

0의 개수를 세어줬따.

좋은 웹페이지 즐겨찾기