#include <iostream> using namespace std; bool check(int n,int d) { while(n) { int e=n%10; n/=10; if(e==d) return true; } return false; } int main() { int n,d; cin>>n>>d; if(check(n,d)==true) cout<<"TRUE"; else cout<<"FALSE"; }
使用您的 aoj 通用账户