博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdoj:2055
阅读量:5947 次
发布时间:2019-06-19

本文共 574 字,大约阅读时间需要 1 分钟。

#include 
#include
using namespace std;bool islower(char ch){ if (ch >= 'a' && ch <= 'z') return true; return false;}bool isUpper(char ch){ if (ch >= 'A' && ch <= 'Z') return true; return false;}int main(){ int T; char ch; int y, sum = 0; cin >> T; while (T--) { cin >> ch >> y; sum = y; if (islower(ch)) { sum = sum - ( ch - 'a'+ 1 ); } else { sum = sum + (ch - 'A' + 1); } cout << sum << endl; } return 0;}

 

转载地址:http://hzbxx.baihongyu.com/

你可能感兴趣的文章
推荐系统高峰论坛
查看>>
移动互联
查看>>
basic4android 开发教程翻译(三)IDE 小贴士
查看>>
obj-c 定义一个类
查看>>
电脑APK
查看>>
HDU-4335 What is N? 欧拉函数,欧拉定理
查看>>
HDU 1044 Collect More Jewels(搜索,先bfs再dfs)
查看>>
使用RabbitMQ过程中遇到的一个问题(队列为空,但内存暴涨)以及与开发者的邮件沟通...
查看>>
C++/C学习笔记(九)
查看>>
ASP.net MVC 中Security.FormsAuthentication验证用户的状态(匿名|已登录)
查看>>
《C++ Primer》 Part III(Classes and Data Abstraction)
查看>>
FriendlyUrls——在ASP.NET Web表单中使用更友好的URL
查看>>
【javascript】字符串对象常用 api
查看>>
对PostgreSQL中 index only scan 的初步理解
查看>>
poj 2337 Catenyms
查看>>
第46周星期二
查看>>
hdu1231-最大连续子序列
查看>>
TMG阵列部署选择
查看>>
Repeater 控件 当数据源没有数据的时候显示 暂无数据 的两种方式
查看>>
大型网站的架构设计图分享-转
查看>>