只需要对word遍历一遍即可
int write(string word) {
int cnt = ;
for(int i = ; i < word.length(); ++ i){
cnt+=word[i]-'A'+;
}
return cnt;
}
只需要对word遍历一遍即可
int write(string word) {
int cnt = ;
for(int i = ; i < word.length(); ++ i){
cnt+=word[i]-'A'+;
}
return cnt;
}