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