文章

55

粉丝

100

获赞

12

访问

31.1k

头像
数字统计 题解:简洁c++
P1002 兰州大学机试题
发布于2024年3月15日 12:21
阅读数 507

#include<stdio.h>
#include<iostream>
using namespace std;

int main(){
    int L=0,R=0;
    cin>>L>>R;
    int count = 0;
    for(int i = L; i<=R;i++){
        int t = i;
        while(t!=0){
            if((t%10) == 2){
                count++;
            }
            t /= 10;
        }
    }
    cout<<count;
}
 
登录查看完整内容


登录后发布评论

1 条评论
lyj123
2024年3月15日 20:00

我靠,妙啊

赞(0)