Java随机输入:“方形“、”圆形“、”长方形“三个中的一个,对应输出”Square“、”Rect“、”circle“
时间: 2023-06-19 18:07:02 浏览: 180
Java代码生成随机点集并判断在定义的长方形和圆形内
3星 · 编辑精心推荐
您可以使用 Java 中的 Random 类生成一个随机数,然后根据这个随机数对应不同的形状进行输出。以下是示例代码:
```java
import java.util.Random;
public class Main {
public static void main(String[] args) {
String[] shapes = {"Square", "Rect", "circle"};
Random random = new Random();
int index = random.nextInt(shapes.length);
String shape = shapes[index];
String result = "";
switch (shape) {
case "Square":
result = "方形";
break;
case "Rect":
result = "长方形";
break;
case "circle":
result = "圆形";
break;
}
System.out.println(result);
}
}
```
运行多次可以看到不同的输出结果。
阅读全文