我在学校做一个项目我们应该模拟一个投注场景,我们开始使用这个代码;
http://introcs.cs.princeton.edu/java/13flow/Gambler.java.html
然而,我们的任务是更改此代码,以便每次下注都应该打印一个" *"对于我们在该赌注后获得的每一美元。
因此,例如,如果我们在第一次下注后赢得1美元,并且我们以5美元作为我们的股份开始,那么该程序应该打印6" *"然后为下一次下注做同样的事情,反之亦然。
我尝试了不同的东西,但似乎可以让它正常工作,因此我在这里请你们提供一些建议/帮助。
这是我到目前为止所提出的;
public class GamblerStars {
public static void main(String[] args) {
int stake = Integer.parseInt(args[0]); // gambler's stating bankroll
int goal = Integer.parseInt(args[1]); // gambler's desired bankroll
int trials = Integer.parseInt(args[2]); // number of trials to perform
int bets = 0; // total number of bets made
int wins = 0; // total number of games won
// repeat trials times
for (int t = 0; t < trials; t++) {
int cash = stake;
int star = 0;
while (cash > 0 && cash < goal) {
bets++;
if (Math.random() < 0.5) {
cash++; // win $1
while (star <= cash) {
star++;
System.out.print("*");
}
} else {
cash--; // lose $1
while (star <= cash) {
star--;
System.out.print("*");
}
}
System.out.println("");
}
if (cash == goal)
wins++; // did gambler go achieve desired goal?
}
System.out.println(wins);
}
}
答案 0 :(得分:0)
我会将你的while块更改为:
def get_id_beneficio(idBuscado)
Beneficio.select(:Id_beneficio)
.where('id_beneficio = ?', "%#{idBuscado}%")
.limit(1)
.first
.id
end
这应该至少可以帮助你发现问题。