用Java实现的盔甲系统
原始素材:
由于Java的讲座和考试的问题是“创建和描述自定义函数”,所以我编写了一个函数,它以随机方式输出“Zun”或“Doko”,并在输出了“Zun”、“Zun”、“Zun”、“Zun”、“Doko”的数组后输出“Ki-Yo-Shi!”然后结束。我得到了满分和学分。
public class zundoco {
public static void main(String[] args) {
String word[] = {"ズン","ドコ"};
String current = "";
int r ;
for (int i =0 ; ; i++){
if (current.lastIndexOf("ズンズンズンズンドコ") > 0){
System.out.print("キ・ヨ・シ!");
break;
}else{
r = (int)(Math.random()*10);
if (r < 5){
current += word[0];
System.out.print(current);
}else{
current += word[1];
System.out.print(current);
}
}
}
}
}