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

📄 file4.java

📁 学习java编程的好程序
💻 JAVA
字号:
import java.util.*;
///创建一个随机类的对象rnd
///通过随机类对象的方法随机的给数据赋值
public class file4
{  
  public static void main(String[] args)
  {
    Random rnd=new Random();
    int a=rnd.nextInt(10);
    int b=rnd.nextInt(10)+5;
    int c=3*rnd.nextInt(10);
    System.out.println(a);
    System.out.println(b);
    System.out.println(c);
  }
}

⌨️ 快捷键说明

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