题解 | #挑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;
}
}