乱数を使う練習①
アイテムなしで色違い孵化厳選を行った場合のシミュレーション
import java.util.Random;
public class Irochigai
{
public static void main(String[] args)
{
System.out.println("色違いシミュレータ");
Random r = new Random();
int randomValue = r.nextInt(4096);
if (randomValue == 4096) {
System.out.println("Irochi");
}
else {
System.out.println("normal");
}
System.out.println(randomValue);
}
}
<今後の予定>
・「キーを押してシミュレーションを続行する」を実装
・アイテムや厳選方法による条件の変化に対応