we define f(A) = 1, f(a) = -1, f(B) = 2, f(b) = -2, ... f(Z) = 26, f(z) = -26;
Give you a letter x and a number y , you should output the result of y+f(x).
Input
On the first line, contains a number T.then T lines follow, each line is a case.each case contains a letter and a number.
Output
for each case, you should the result of y+f(x) on a line.
Sample Input
6
R 1
P 2
G 3
r 1
p 2
g 3
Sample Output
19
18
10
-17
-14
-4
本题还是坑在 对于 char 和 int 的理解上 还有 对于scanf("%c",&a); 会吸收 换行符和空格的 认识没有到位。
还有剩余的一个疑问 就是对a 进行如下操作时的会导致错误产生的不理解 a=(a-96)*-1+b; 第一个测试对 第二个就不行了。
大写字母和小写字母在字母表中的位置
if(a>='A'&&a<='Z')
printf("%d\n",a-'A'+1+b);
if(a>='a'&&a<='z')
printf("%d\n",(a-96)*-1+b);
另外,Xcode中字母无论大小写输入最后保存的都是大写·········(哭晕在厕所!!!)
下午找到原因:因为是拼音输入法,按下caps lock在输入英文,在xcode中这是不行的,切换成英文输入法就好了
#include <iostream>
#include <cstdio>
#include "cctype"
#include "cstring"
#include "algorithm"
#include <vector>
#include <list>
#include <stack>
#include <queue>
#include <map>
#include <unordered_map>//Hash_map:因为标准化的推进,hash_map属于非标准容器,未来将要用:boost中tr1中的unordered_map替代之
using namespace std;
const int Maxn=1000;
int main(int argc, const char * argv[]) {
char a;
int n,b;
scanf("%d",&n);
getchar();
while(n--)
{
scanf("%c",&a);
getchar();
scanf("%d",&b);
getchar();
if(a>='A'&&a<='Z')
printf("%d\n",a-'A'+1+b);
if(a>='a'&&a<='z')
printf("%d\n",(a-96)*-1+b);
}
return 0;
}