前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >10055 - Hashmat the Brave Warrior

10055 - Hashmat the Brave Warrior

作者头像
若羽
发布2019-07-15 16:27:26
5700
发布2019-07-15 16:27:26
举报
文章被收录于专栏:Code思维奇妙屋Code思维奇妙屋

Problem A

Hashmat the brave warrior

Input: standard input

Output: standard output

Hashmat is a brave warrior who with his group of young soldiers moves from one place to another to fight against his opponents. Before fighting he just calculates one thing, the difference between his soldier number and the opponent's soldier number. From this difference he decides whether to fight or not. Hashmat's soldier number is never greater than his opponent.

Input

The input contains two integer numbers in every line. These two numbers in each line denotes the number of soldiers in Hashmat's army and his opponent's army or vice versa. The input numbers are not greater than 2^32. Input is terminated by End of File.

Output

 For each line of input, print the difference of number of soldiers between Hashmat's army and his opponent's army. Each output should be in seperate line.

Sample Input:

10 12 10 14 100 200

Sample Output:

2 4 100

___________________________________________________________________________________ Shahriar Manzoor 16-12-2000

注: I64d(long long )在不同环境的要求.

代码:

代码语言:javascript
复制
 1 #include "stdio.h"
 2 
 3 int main()
 4 {
 5 
 6     long long n,m;
 7     while(scanf("%lld %lld",&n,&m)!=EOF)
 8     {
 9         if(n>m)
10             printf("%lld\n",n-m);
11         else
12             printf("%lld\n",m-n);
13     }
14     return 0;
15 }
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2014-04-06 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档