java 随机产生颜色,取值范围为red、blue、yellow、green、orange
时间: 2023-10-16 15:10:05 浏览: 90
java 数据类型有哪些取值范围多少
你可以使用Java中的Random类和switch语句来实现随机产生颜色的功能,具体代码如下:
```java
import java.util.Random;
public class RandomColor {
public static void main(String[] args) {
String[] colors = {"red", "blue", "yellow", "green", "orange"};
Random random = new Random();
int index = random.nextInt(colors.length);
String color = colors[index];
switch (color) {
case "red":
System.out.println("产生的随机颜色为红色");
break;
case "blue":
System.out.println("产生的随机颜色为蓝色");
break;
case "yellow":
System.out.println("产生的随机颜色为黄色");
break;
case "green":
System.out.println("产生的随机颜色为绿色");
break;
case "orange":
System.out.println("产生的随机颜色为橙色");
break;
default:
System.out.println("颜色错误");
break;
}
}
}
```
运行多次可以看到不同的随机颜色。
阅读全文