HDOJ(HDU) 2143 box(简单的多次判断-用的卫条件)

举报
谙忆 发表于 2021/05/27 00:46:43 2021/05/27
【摘要】 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 b...

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!

题意:
给你3个数,判断其中2个数进行+-*/%运算后的结果是不是剩余的那个数。

注意几点:
1.数据类型要用long型,不然数据会溢出。
2.除法是真实的除法,是计算机的3/2=1.5;不是计算机的1;
3.求模判断不为0;
4.其他两个数是和本身不同的两个数,不包括本身。

import java.util.Scanner;

public class Main{ public static void main(String[] args) { Scanner sc = new Scanner(System.in); while(sc.hasNext()){ long a = sc.nextLong(); long b = sc.nextLong(); long c = sc.nextLong(); //a+b=c,也就是c-b=a,c-a=b; if((a+b)==c||(b+c)==a||(a+c)==b){ System.out.println("oh,lucky!"); continue; } //这里用乘法判断除法好些。a*b=c也就是c/b=a.c/a=b(实际上) //因为这里的判断除法是:3/2=1.5的。计算机中的int,long进行除法:3/2=1; //如果我们写除法判断,还要判断结果是不是整数、 if((a*b)==c||(a*c)==b||(b*c)==a){ System.out.println("oh,lucky!"); continue; } //不能对0取模 if((b!=0&&(a%b==c||c%b==a))||(c!=0&&(a%c==b||b%c==a)||(a!=0&&(b%a==c||c%a==b)))){ System.out.println("oh,lucky!"); continue; } System.out.println("what a pity!"); } }
}

  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34

文章来源: chenhx.blog.csdn.net,作者:谙忆,版权归原作者所有,如需转载,请联系作者。

原文链接:chenhx.blog.csdn.net/article/details/51321003

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。