题解 | #挑7#

挑7

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

#include <iostream>
using namespace std;

bool find7(int n){
    if(n%7==0)return true;
    while(n){
        if(n%10==7)return true;
        n = n/10;
    }
    return false;
}
int ans(int n){
    int res=0;
    for(int i=7; i<=n;i++){
        if(find7(i))res++;
    }
    return res;
}
int main() {
    int n;
    cin>>n;
    cout<<ans(n);
}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

11-29 11:21
门头沟学院 Java
总包48.5w,意想不到的价格
想开了的垂耳兔很喜欢拱白菜:转人工
点赞 评论 收藏
分享
牛客868257804号:九个中铁八个中建
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务