#include <iostream> using namespace std; bool Spr(long long a){ long long licz = a; int s; while(licz>0){ s = licz%10; if(s==0 or a%s!=0){ return false; } licz = licz/10; } return true; } int main(){ ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); long long p,k; cin>>p>>k; long long il=0; for(long long i=p;i<=k;i++){ if(Spr(i)==true){ il++; //cout<<i<<"\n"; } } cout<<il; }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | #include <iostream> using namespace std; bool Spr(long long a){ long long licz = a; int s; while(licz>0){ s = licz%10; if(s==0 or a%s!=0){ return false; } licz = licz/10; } return true; } int main(){ ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); long long p,k; cin>>p>>k; long long il=0; for(long long i=p;i<=k;i++){ if(Spr(i)==true){ il++; //cout<<i<<"\n"; } } cout<<il; } |