2012-10-29 17:50:24 UTC
// The "As7Ex3" class.
import java.awt.*;
import hsa.Console;
public class As7Ex3
{
static Console c; // The output console
public static void main (String[] args)
{
boolean one, two, three;
one = false;
two = false;
three = false;
int count = 0;
while (one == true && two == true && three == true)
{
one = true;
two = true;
three = true;
if (Math.random () < 0.5)
one = true;
if (Math.random () < 0.5)
two = true;
if (Math.random () < 0.5)
three = true;
count++;
}
c.println (count);
// Place your program here. 'c' is the output console
} // main method
} // As7Ex3 class
i keep getting wierd errors, plz help