[Common Java class libraries] _ math and random classes

Source: Internet
Author: User

[Common Java class libraries] _ math and random classes

Math instance:

Public class mathdemo01 {public static void main (string ARGs []) {// The methods in the math class are static methods, and the class is directly used. the method name () can be called in the form of system. out. println ("square root:" + math. SQRT (9.0); system. out. println ("calculate the maximum value of two numbers:" + math. max (10, 30); system. out. println ("minimum value of two numbers:" + math. min (10, 30); system. out. println ("2's 3rd power:" + math. pow (2, 3); system. out. println ("Rounding:" + math. round (33.6 ));}};

Random instance:

Import Java. util. random; public class randomdemo01 {public static void main (string ARGs []) {random r = new random (); // instantiate the random object for (INT I = 0; I <10; I ++) {system. out. print (R. nextint (100) + "\ t ");}}};
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.