#44225: 想不出來再點


yp11351135@yphs.tp.edu.tw (703-30莊承昊)

學校 : 臺北市私立延平高級中學
編號 : 276241
來源 : [122.116.149.217]
最後登入時間 :
2024-08-06 23:55:48
d899. NOIP2010 1.数字统计 -- NOIP2010普及组第一题 | From: [203.72.178.1] | 發表日期 : 2024-11-14 17:50

我不能幫你太多:

#include <iostream>
using namespace std;
int main ()
{
    int L,R;
    while(cin>>L>>R)
    
    {
        int c=0;
        for(int i=L; i<=R; i++)
        {
            int temp=i;
            while(temp!=0)
            {
                if(temp%10==2) c++;
                temp/=10;
            }
        }
        cout<<c<<endl;
    }
}

 
ZeroJudge Forum