文章

11

粉丝

93

获赞

3

访问

5.9k

头像
字符串转化 题解:
P2020
发布于2024年3月8日 18:33
阅读数 780

#include<iostream>
#include<stdio.h>
#include<string>
using namespace std;


int main(){
    string str;
    while(cin>>str){
        int sum=0;
        for(int i=0;i<str.length();++i){
            sum+=str[i]-'a'+1;
        }
        cout<<sum<<endl;
    }
    return 0;
}
 

登录查看完整内容


登录后发布评论

1 条评论
lizongyuan
2024年3月19日 10:47

nb

赞(0)