• 2022-06-19
    请在下面的横线处填上适当的内容,使下面的程序利用Random类能随机输出1-100中的任一个整数。 class Test{ public static void main(String[] args) { Random r=new Random(); int i= ① System.out.println(i); } }