数字游戏-简单版本

用string 读取,二重for循环判断s中的某一个字符饭,是否在t中也含有

#include <iostream>
#include <string>
using namespace std;
string s,t;
int main()
{
    cin>>s>>t;
    int flag=1;
    for(int i=0;i<s.length();i++) {
        for(int j=0;j<t.length();j++) {
            if(s[i]==t[j]) {flag=0;break;}
        }
    }  
    if(flag==0) cout<<"Bob";
    else cout<<"Alice";
    return 0;
}