我完全被这个 char 场景弄糊涂了。我知道在 java 中,如果你使用单个字符,你会使用 char。我了解 math.random 但我不知道如何为随机数分配大写字母?
我读这个的方式是:打印 -> 输入 case char 原始类型 -> 字母“A” -> 连接一个最多 27 的随机数...
但这段代码如何工作?
public class question {
public static void main(String[] args) {
System.out.println((char)('A' + Math.random() * 27));
}
}