首页 > 代码库 > The Love-Letter Mystery
The Love-Letter Mystery
The Love-Letter Mystery
#include<cmath> #include<cstdio> #include<vector> #include<iostream> #include<algorithm> #include<string> using namespace std; int main() { int T; cin>>T; string str; getline(cin,str); while(T--) { string str1; int count; getline(cin,str1); count = str1.length() ; int sum = 0,n = 0; int j = count/2; for(int i = 0;i < j ;i++) { if(static_cast<int>(str1[count - 1 - i]) >= static_cast<int>(str1[0 + i])) { n = static_cast<int>(str1[count - 1 - i] - str1[0 + i]); sum += n; } else { n = static_cast<int>(str1[0 + i]) - static_cast<int>(str1[count - 1 - i]); sum += n; } } cout<<sum<<endl; } /* Enter your code here. Read input from STDIN. Print output to STDOUT */ return 0; }
The Love-Letter Mystery
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。