私は自分のコードを書き、それは完全に機能しますが、独自のメソッドは書きませんでした。課題のポイントは、サブルーチンの使用を練習することであり、それが私が使用しなければならないものです。私は自分の方法を作ることについて読んだ - たくさん。しかし、私はまだそれについて頭を悩ませることはできません。
これが私のコードの一部です。それを使って独自のメソッドを作成し、それを呼び出す方法を説明してくれませんか?
public static void main(String[] args) {
//Display welcome message
System.out.println("Welcome to the Math Functions event!");
Scanner keyIn = new Scanner(System.in);
Scanner userInput;
System.out.print("Press the ENTER key to toss the dice.");
keyIn.nextLine();
//roll dice
Random rand = new Random();
int tries = 0;
int sum = 0;
while (sum != 7 && sum != 11) {
// roll the dice once
int roll1 = rand.nextInt(6) + 1;
int roll2 = rand.nextInt(6) + 1;
sum = roll1 + roll2;
System.out.println(roll1 + " + " + roll2 + " = " + sum);
tries++;
}
}
どんな助けでも大歓迎です!ありがとうございました!