次のコードは 0 のみを生成しています ;-;
私は何を間違っていますか?
public class RockPaperSci {
public static void main(String[] args) {
//Rock 1
//Paper 2
//Scissors 3
int croll =1+(int)Math.random()*3-1;
System.out.println(croll);
}
}
編集、別のポスターがそれを修正する何かを提案しました。int croll = 1 + (int) (Math.random() * 4 - 1);
みんな、ありがとう!