Home > Java > Javagetting Started > body text

How to generate random numbers between 1 and 100 in java

王林
Release: 2020-04-28 11:04:25
Original
22537 people have browsed it

How to generate random numbers between 1 and 100 in java

You can use the random() method, which is used to return a random number. The range of the random number is 0.0 =< Math.random < 1.0.

Note: This is a default method and does not accept any parameters.

(Recommended video tutorial: java video)

Example:

int i = (int)(Math.random()*100+1);
Copy after login

Recommended tutorial: java entry program

The above is the detailed content of How to generate random numbers between 1 and 100 in java. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!