正如标题所说,我必须使用一个类文件,还有一个主方法java文件,它调用类文件并打印出起始硬币面,以及另外40个硬币面翻转。我还需要有2个计数器来计算头数和尾数。这是我的类文件和主方法文件的代码。我遇到的问题是,每当我运行它时,它总是打印出头部有0个计数,尾部有40个计数。
班级档案
import java.util.Random;
public class CoinToss
{
private String sideUp;
public CoinToss()
{
Random randomNum = new Random();
int number = randomNum.nextInt();
if(number%2 == 0)
sideUp = "heads";
else
sideUp = "tails";
System.out.println(sideUp);
}
public void toss()
{
Random randomNum = new Random();
int number = randomNum.nextInt();
if(number%2 != 0)
{
sideUp = "heads";
}
else
{
sideUp = "tails";
}
System.out.println(sideUp);
}
public String getSideUp()
{
return sideUp;
}
}
主要方法文件
public class CoinTossDemo
{
public static void main(String[] args)
{
int headsCount = 0;
int tailsCount = 0;
System.out.print("The Starting side of the coin is: ");
CoinToss coin = new CoinToss();
System.out.println();
for(int x = 0; x < 40; x++)
{
System.out.print("The next side of the coin is: ");
coin.toss();
System.out.println();
if(coin.equals("heads"))
{
headsCount++;
}
else
{
tailsCount++;
}
}
System.out.println("The amount of heads that showed up is: " + headsCount);
System.out.println();
System.out.println("The amount of tails that showed up is: " + tailsCount);
}
}
请提前帮助,谢谢。
答案 0 :(得分:1)
目前,您正在将CoinToss coin
对象与字符串值heads
进行比较,这就是它始终转到else
部分的原因。
我可以看到您正在将当前掷硬币的结果设置为sideUp
(这是String
)。因此,您需要将其与heads
中的if
进行比较。
if(coin.getSideUp().equals("heads")) { // getSideUp() returns the sideUp value
headsCount++;
} else {
tailsCount++;
}
答案 1 :(得分:0)
您正在为侧面属性分配答案,因此请获取该值coin.getSideUp()
for (int x = 0; x < 40; x++)
{
System.out.print("The next side of the coin is: ");
coin.toss();
System.out.println();
if (coin.getSideUp().equals("heads")) // use the side up property
{
headsCount++;
}
else
{
tailsCount++;
}
}