我需要使用java在eclipse中投擲硬幣的代碼,代碼需要包含用戶在硬幣上的輸入,並在代碼啓動投擲硬幣後調用硬幣。在Eclipse中爲硬幣翻轉Java設置
這裏是我到目前爲止的代碼:
Scanner input = new Scanner(System.in);
int choice;
int heads = 1;
int tails = 0;
System.out.print("Please call the toss, heads or tails: ");
choice = input.nextInt();
但我不知道下一步該怎麼做。
到目前爲止您嘗試了什麼? –
好的,你有用戶輸入。接下來是產生一個隨機數來翻轉硬幣?你可以使用'Math.random()',或使用'Random'類。 –
如果你在這裏搜索'java coin flip',你會發現一些類似的問題和答案,可能會給你一些有用的想法 –