알고리즘

[알고리즘] 백준 11170 - 0의 개수 (C++)

blueberrysoda 2024. 9. 21. 23:54

[문제 링크] : https://www.acmicpc.net/problem/11170

#include <iostream>
using namespace std;
 
int main(){
    int T, A, B;
    cin >> T;
 
    while(T--){
        cin >> A >> B;   
        int cnt=0;
 
        for(int i=A; i<=B; i++){
            string s = to_string(i);
            for(int j=0; j<s.length(); j++){
                if(s[j]=='0'){
                    cnt++;
                }
            }
        }
        cout << cnt << "\n";
    }
    return 0;
}