gpt4 book ai didi

java - 投注和寻找独特性

转载 作者:行者123 更新时间:2023-12-01 04:43:59 25 4
gpt4 key购买 nike

我在入门课上一直在努力,我几乎完成了我的最后一个项目,基诺。这是一种根据您与庄家匹配的数字数量来奖励金钱的投注游戏。我对在哪里下注有疑问,他们从 100 美元开始,并被要求支付一定数量的钱。我不知道哪种方法仍然有效,因为我的方法不是空的,所以我无法返回多个数据值。

我的第二个问题,也许是更重要的一个,是它们需要是唯一的数字。为此,我需要每次都搜索数字数组以查看它们是否匹配,或者使用 boolean 数组来跟踪数字。我不知道我会如何做第二个,但我很清楚我会如何处理第一个。问题是我已经使用了 do while,我不确定如何添加带有嵌套 for 循环的 for 循环。这是我的代码,抱歉,如果它很乱,我知道我的老师讨厌我的大括号:

package Keno;

import cs1.Keyboard;

public class Keno {
public static void main(String[]args){
int userArr[]=user();
int compArr[]=computer();
int howMany=matchNums(compArr,userArr);
int moneyGained=betting(howMany);

System.out.println("You matched "+howMany+" numbers");
System.out.println("You have gained "+moneyGained+" dollars!");

}

public static int[] computer(){
int []compChoice=new int[20];
for(int x=0;x<compChoice.length;x++){
compChoice[x]=(int)(Math.random()*81);
}
return compChoice;
}
public static int[] user(){
int choice[]=new int[7];
System.out.println("Welcome to Keno!");
System.out.println("Choose 7 unique numbers ranging from 1-80");
System.out.println("*************************************************");
//assigns numbers to choice array
for(int x=0;x<choice.length;x++){
do{
int temp=x+1;
System.out.println("number "+temp+": ");
choice[x]=Keyboard.readInt();
}while(choice[x]<0||choice[x]>80);

}
System.out.println("Thanks!");
System.out.println("*************************************************");
return choice;

}
public static int matchNums(int arr1[], int arr2[]){
int count=0;
//checks each array slot individually to see if they match
for(int x=0;x<arr1.length;x++){
for(int y=0;y<arr2.length;y++){
if(arr1[x]==arr2[y]){
count++;
}
}
}
return count;
}
public static int betting(int matches){
int moneyGained=0;
if(matches==7){
moneyGained=12000;
}else if(matches==6){
moneyGained=200;
}else if(matches==5){
moneyGained=20;
}else if(moneyGained==4){
moneyGained=1;
}
return moneyGained;
}

}

最佳答案

添加投注/金钱概念的最简单方法是添加一个代表玩家拥有多少钱的整数(从 100 开始)。您必须询问玩家想要下注多少,然后相应地调整他们的资金。

public static void main(String[] args) {
int playerMoney = 100;
int wagered = getWager(); // dont forget it has to be 0 < wagered <= 100
// adjust players money according to the wager, and how much they won

为了确保独特性,您的任何一个想法都可以。我喜欢只检查数组中是否存在数字,但大小为 80 的 boolean 数组也可以。虽然只有 7 个数字,但看起来似乎很多。

关于java - 投注和寻找独特性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16120903/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com