Home  >  Article  >  Java  >  How to generate random numbers between 1 and 100 in java

How to generate random numbers between 1 and 100 in java

王林
王林Original
2020-04-28 11:04:2522556browse

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);

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!

Statement:
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