java小程序
这个我写的关于测试投筛子的小程序,编译成功,但是就是不能运行成功,希望高人指导,在线等!!
import java.lang.Math;
public class MathTest
{
public static void main(String []args)
{
int j=0;
int count=0;
for(int i=0;i<1000;i++)
{
j=(int)(Math.random()*6+1);
System.out.println("j="+j);
while(j==3)
{count++;}
}
System.out.println("count= "+count);
System.out.println("Finish");
}
}
参考答案:add "break;" in the while statement