0

我试图制作一个 DOS 游戏或 System.out.print 并使用接口.. 但我不知道如何.. awwww .. 我的意思是当角色受伤时使用随机方法说出不同的句子 amm 像代码在这里

String sh1 = "";
String sh2 = "";
String sh3 = "";
Random r1 = new Random(); 
int ir1 = r1.nextInt(3)+1;
int ih1 = 1;
int ih2 = 2;
int ih3 = 3;
integer.ToString(ih1);
integer.ToString(ih2);
integer.ToString(ih3);

我希望我解释得足够明白如果有任何错误我很抱歉我在这里学习并感谢理解

4

1 回答 1

3

这是您使用数组的地方:

String[] sh = {
    "First sentence",
    "Second sentence",
    "Third sentence"
};
int ir1 = r1.nextInt(sh.length);
System.out.println(sh[ir1]);

请注意,数组索引以0.

于 2013-09-08T13:47:21.707 回答