题解 | #挑7#

挑7

http://www.nowcoder.com/practice/ba241b85371c409ea01ac0aa1a8d957b

#include <algorithm>

using namespace std;

bool judge(int x){
    if(x%7==0) return true;
    while(x!=0){
        if(x%10==7) return true;
        x/=10;
    }
    return false;
    
}


int main() {
    int N;
    while(cin>>N){
        bool relation = false;
        int cnt=0;
        
       for(int i = 1;i<=N;i++)
       {
           relation = judge(i);
           if(relation) cnt++;
           
           
       }
        cout<<cnt<<endl;
    }
}
全部评论

相关推荐

不愿透露姓名的神秘牛友
2025-12-18 11:21
优秀的大熊猫在okr...:叫你朋友入职保安,你再去送外卖,一个从商,一个从政,你们两联手无敌了,睁开你的眼睛看看,现在是谁说了算(校长在背后瑟瑟发抖)
选实习,你更看重哪方面?
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务