当前位置: 代码迷 >> 综合 >> HDU 2055
  详细解决方案

HDU 2055

热度:92   发布时间:2023-12-15 11:51:29.0
#include <iostream>
#include <cstdlib>
#include <cstring>
#include <cmath>
using namespace std;int main() {int t;cin>>t;while(t--){char x;int y;cin>>x>>y;if(x >= 'a' && x <= 'z'){//小写int tmp = x - 'a' + 1;y -=tmp;}else if(x>='A' && x <= 'Z'){int tmp = x - 'A' + 1;y+=tmp;}cout<<y<<endl;}return 0;
}