[알고리즘] 백준 11170 - 0의 개수 (C++) [문제 링크] : https://www.acmicpc.net/problem/11170#include using namespace std; int main(){ int T, A, B; cin >> T; while(T--){ cin >> A >> B; int cnt=0; for(int i=A; i 알고리즘 2024.09.21