hdu2143

转自 http://blog.csdn.net/ysc504/article/details/8505630

box

Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 5323    Accepted Submission(s): 1023


Problem Description
One day, winnie received a box and a letter. In the letter, there are three integers and five operations(+,-,*,/,%). If one of the three integers can be calculated by the other two integers using any operations only once.. He can open that mysterious box. Or that box will never be open.
 

Input
The input contains several test cases.Each test case consists of three non-negative integers.
 

Output
If winnie can open that box.print "oh,lucky!".else print "what a pity!"
 

Sample Input
  
  
1 2 3
 

Sample Output
  
  
oh,lucky!
 

Author
kiki
 

Source
 

Recommend
威士忌
 
[html]  view plain copy
  1. #include <stdio.h>  
  2. int fun(__int64 a, __int64 b, __int64 c)  
  3. {  
  4.     if(a + b == c)  
  5.         return 1;  
  6.     if(a * b == c)  
  7.         return 1;  
  8.     if(a != 0 && b % a == c)  
  9.         return 1;  
  10.     return 0;  
  11. }  
  12. int main()  
  13. {  
  14.     __int64 a, b, c, flag;  
  15.     while (~scanf("%I64d%I64d%I64d", &a, &b, &c))  
  16.     {  
  17.           
  18.         flag = 0;  
  19.         if(fun(a, b, c))  
  20.             flag = 1;  
  21.         else if(fun(a, c, b))  
  22.             flag = 1;  
  23.         else if(fun(b, a, c))  
  24.             flag = 1;  
  25.         else if(fun(b, c, a))  
  26.             flag = 1;  
  27.         else if(fun(c, b, a))  
  28.             flag = 1;  
  29.         else if(fun(c, a, b))  
  30.             flag = 1;  
  31.         if(flag)  
  32.             printf("oh,lucky!\n");  
  33.         else  
  34.             printf("what a pity!\n");  
  35.     }  
  36.     return 0;  
  37. }  
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值