HDU2057

http://acm.hdu.edu.cn/showproblem.php?pid=2057

涉及到16进制内的加法,可以用%I64x直接来处理,要注意到16进制中负数是用补码来表示的。一个比较困惑的事实是,这道题再输出时,%64X中‘X’必须是大写,小写是过不了的。

注意:__int64 %I64X ,输出用大写

#include "cstdio"

int main()
{
    __int64 a,b,c;
    while(~scanf("%I64X%I64X",&a,&b))
    {
        c=a+b;
        if(c>=0)
            printf("%I64X\n",c);
        else
            printf("-%I64X\n",-c);
    }
    return 0;
}
#include "cstdio"

#define LL long long
int main()
{
    LL a,b,c;
    while(~scanf("%llX%llX",&a,&b))
    {
        c=a+b;
        if(c>=0)
            printf("%llX\n",c);
        else
            printf("-%llX\n",-c);
    }
    return 0;
}
时间: 2024-12-06 14:53:07

HDU2057的相关文章

HDU2057 A + B Again

问题链接:HDU2057 A + B Again.入门训练题,用C语言编写程序. 投机取巧,按照许多人的做法来做,程序是AC了.即便如此,也是一脸困惑,不知道解了这种题意义何在?因为定义变量的类型是__int64,十分的不满意.还是希望用long long定义变量,但是输入输出格式. 看一下下表,可以知道__int64 与long long 的区别. 变量定义 输出方式 gcc(mingw32) g++(mingw32) gcc(linux i386) g++(linux i386) Micro

HDU2057 A + B Again【水题】

A + B Again Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 16794    Accepted Submission(s): 7229 Problem Description There must be many A + B problems in our HDOJ , now a new one is coming. Gi

2015-11-1-Training(for 2015th)

A:(hdu2081) Solution: get the last five digits, not mod 100000 cause the leading zero. B:(hdu2075) C:(hdu2071) D:(hdu2070) Solution: The 40th fibonacci number is greater the 1e9, so data type long long is necessary. E:(hdu1040) Solution: sort the arr