⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 testrandom.java

📁 测试哈希表
💻 JAVA
字号:
import java.util.Random;

public class TestRandom{
	public void test(){
		Random rnd=new Random();
		print("布尔类随机数:"+rnd.nextBoolean());
		print("双精度随机数:"+rnd.nextFloat());
		print("单精度随机数:"+rnd.nextLong());
		print("长整型随机数:"+rnd.nextInt());
		print("100以内的随机整数:"+rnd.nextInt(100));
		print("高斯随机数:"+rnd.nextGaussian());
		
		}
	public void print(String strInfo){
		System.out.println(strInfo);
		
		}
	public static void main(String args[]){
		TestRandom TR=new TestRandom();
		TR.test();
		
		}
	
	}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -