执行下面的代码,表述正确的是( )。 Random rd=new Random(); int a=rd.Next(0,5); Console.WriteLine(a);
A: a的值始终介于0到5之间,但不能是5
B: a的值始终介于0到5之间,但不能是5和0
C: a的值始终介于0到5之间,但不能是0
D: a的值始终介于0到5之间,包含0和5
A: a的值始终介于0到5之间,但不能是5
B: a的值始终介于0到5之间,但不能是5和0
C: a的值始终介于0到5之间,但不能是0
D: a的值始终介于0到5之间,包含0和5
举一反三
- 请问0到10之间,0距离5远还是10距离5远?
- 阅读下面的代码,输出结果是( ) public static void main(String[] args) { Random random1 = new Random(10); Random random2 = new Random(10); for(int i=0;i<5;i++){ System.out.print(random1.nextInt(5)); } for(int i=0;i<5;i++){ System.out.print(random2.nextInt(5)); } }
- 假设x,y的值都是0,执行下列程序段 该程序的功能是() A: 求0到5的和 B: 求1到5的积 C: 求0到4的和 D: 不知道
- 食品冷藏的温度一般在() A: 0~5℃之间 B: 0~10℃之间 C: 0~15℃之间 D: 5~10℃之间 E: 5~15℃之间
- 方程\({x^5} - 3x - 1 = 0\)至少有一个实根介于1与2之间。( )