可以帮忙看看下面的代码哪里有问题?为啥当时就没过? #include<bits/stdc++.h> using namespace std; int main(){ string str1,str2; getline(cin,str1); getline(cin,str2); int score=0; int N=str1.size(); for(int i=0;i<N;i++){ if(str1[i]==str2[i]) score+=20; else score-=10; score=max(score,0); } cout<<score<<endl; return 0; }