An easy problem HDU - 2055(对char和int的理解;Xcode中字符输入分输入法)

博客介绍了在C++编程中关于字符和整数转换的理解,特别是字母与整数的映射关系,强调了`scanf()`函数处理字符输入时会吸收换行符和空格的特性。此外,文章还提到了在Xcode中使用拼音输入法可能导致的问题,指出解决方法是切换到英文输入法。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

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;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值