非常に初心者がここで、ダブルを返すメソッドを使って0(包括)と10(排他)の間にランダムなダブルを印刷できない理由を理解しようとしていますが、 。Math.randomを使用
package Practicing;
public class Practicing {
public static void main(String[]args){
System.out.println("The random double is:");
}
public static double getRandomNumber(){
double random = Math.random()*10;
System.out.print(random);
return random;
}
public static void printer(double random){
double value = random;
System.out.print(value);
}
}
'あなた 'メイン()'メソッドで... – Frakcool
問題は何ですか? – shmosel
'getRandomNumber()'または 'printer()'を決して呼び出しません。 – Andreas