Learn to practice the perimeter area of the Java programming garden

Source: Internet
Author: User

Write a Java program that calculates the circumference length and area of the RADIUS 3.0 and outputs the results.

Note: The system class math is in the Java.lang packet, and pi π can be obtained by the static attribute pi of the math class, which is defined as "public static final double PI = 3.14159265358979323846;".

1  PackageCom.hanqi;2 3 Importjava.lang.*;4 5 //Write a Java program that calculates the circumference length and area of the RADIUS 3.0 and outputs the results. 6 7 //Note: The System class math is located in the Java.lang packet, Pi Pi can be obtained by the static attribute pi of the math class.8 //it is defined as9 //"public static final double PI = 3.14159265358979323846;". Ten  Public classYuan { One  A      -      Public Static voidMain (string[] args) { -          the         DoubleR = 3.0; -          -         DoubleZhouchang = 2 * Math.PI *R; -          +         DoubleMianji = Math.PI * R *R; -          +System.out.println ("perimeter of the garden =" +Zhouchang); A          atSystem.out.println ("area of the garden =" +Mianji); -     } -}

Learn to practice the perimeter area of the Java programming garden

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.