题解 | #挑7#

挑7

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

#include<iostream>
using namespace std;


bool handle( int i ){
    // 1.先判断数字中含不含7
    int copy = i;
    while(i){
        int cur = i % 10;
//         cout << "当前位上数字:" << cur << endl;
        if( cur == 7 ){
            return true;
        }
        i /= 10;
    }

    // 2. 判断是不是7的倍数
    int resident = copy % 7;
//     cout << "对7取模:"<< resident << endl;
    if(!resident)
        return true;
    return false;
}

int main(){
    int n;
    cin >> n;
    int ans = 0;
    for(int i =1 ; i <=n ; i++){
//         cout << "当前处理的数字:" << i << endl;
        bool res = handle(i);
//         cout <<res << endl;
        if(res)
            ans++;
    }

    cout <<ans;
}
全部评论

相关推荐

喜欢走神的孤勇者练习时长两年半:爱华,信华,等华,黑华
点赞 评论 收藏
分享
粗心的雪碧不放弃:纯学历问题,我这几个月也是一直优化自己的简历,后来发现优化到我自己都觉得牛逼的时候,发现面试数量也没有提升,真就纯学历问题
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务