码迷,mamicode.com
首页 > 其他好文 > 详细

UVA10055 Hashmat the Brave Warrior

时间:2016-08-15 22:29:11      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:

问题链接:UVA10055 Hashmat the Brave Warrior

问题简述:输入两个数,计算其差的绝对值。

问题分析:(略)。

程序说明:写程序,不是要写得简单,而是要写得极其简单。也可以写一个带参数的宏定义来计算差的绝对值,这样的宏别的地方也可以使用。

AC的C语言程序如下:

/* UVA10055 Hashmat the Brave Warrior */

#include <stdio.h>

int main(void)
{
    long long a, b;

    while(scanf("%lld%lld", &a, &b) != EOF)
        printf("%lld\n", (a > b) ? (a - b) : (b - a));

    return 0;
}


UVA10055 Hashmat the Brave Warrior

标签:

原文地址:http://blog.csdn.net/tigerisland45/article/details/52215132

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!