Java Getting Started code 2 floating point data type

Source: Internet
Author: User

1 /**2 * Floating-point type of basic data type3  */4  Public classDataTypeDemo2 {5      Public Static voidMain (string[] args) {6         DoubleD1 = 3;7System.out.println (D1);//3.08         DoubleD2 = 2.4;9D1 = d1-D2;TenSystem.out.println (D1);//0.6000000000000001 One         floatF1 = 3.0F;//declaring a float type variable requires a suffix f A         floatF2 = 2.4F; -F1 = F1-F2; -System.out.println (F1);//0.5999999 theSystem.out.println (5/2);//2 -         /* - * Low-precision data types and high-precision operations, the return results are - * is a high-precision value +          */ -System.out.println (5.0/2);//2.5 +         DoubleMax =Double.max_value; ASystem.out.println (Max*max);//Infinity infinitely Large at         Doublesqrt = math.sqrt (-3); -System.out.println (sqrt);//NaN (not A number) -     } -}

Java Getting Started code 2 floating point data type

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.