Hdu 2054 A = = B? (Java large number)

Source: Internet
Author: User

Topic Meaning:

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

Give two number, judge whether equal, output yes, otherwise output No.


Topic Analysis:

Note that the topics given are two numbers, no description format and size, only string emulation comparisons, or Java large number comparisons. This gives a large comparison of Java.


AC Code:

Import Java.math.bigdecimal;import Java.math.biginteger;import Java.util.scanner;public class Main {public    static void Main (string[] args) {        Scanner sc=new Scanner (system.in);        while (Sc.hasnext ()) {            BigDecimal n1=sc.nextbigdecimal ();            BigDecimal n2=sc.nextbigdecimal ();                        if (N1.compareto (n2) ==0) System.out.println ("YES");            else System.out.println ("NO");        }        Sc.close ();    }}


Hdu 2054 A = = B? (Java large number)

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.