Răspuns:
#include<iostream>
using namespace std;
int main(){
long int x,c,cifra;
bool ok=0;
cout<<"x=";
cin>>x;
cout<<"c=";
cin>>c;
while(x!=0){
cifra=x%10;
if(cifra!=c)
ok=1;
x=x/10;
}
if(ok==1)
cout<<"numarul nu are toate cifrele egale";
else
cout<<"numarul are toate cifrele egale";
}
Explicație: