问题标题: 酷町堂:3963 数字组成判别

0
0
已解决
李显晨
李显晨
中级启示者
中级启示者

错误代码WA0分:

#include<iostream>
#include<cstdio>
#include<string>
using namespace std;
int t,n,x,a,b[10],cnt,ans;
int main(){
    cin>>t;
    for(int i=1;i<=t;i++){
        cin>>n>>x;
        for(int j=1;j<=n;j++){
            cin>>a;
            b[a]++;
        }
        while(x){
            if(b[x%10]!=0) cnt++;
            x/=10;
            ans++;
        }
        if(cnt==ans) cout<<"yes";
        else cout<<"no";
    }
    return 0;
}

求找错啊!


0
已采纳
张帆
张帆
中级天翼
中级天翼

b数组在每次循环时没清空。

0
李子杰
李子杰
资深光能
资深光能

b数组每次循环没清零。

0
我要回答