2008-08-21

A Woman

import java.util.LinkedList;

public class Woman {
private int pleasness;
Woman()
{
pleasness = 10; // women are not pleased by default
}
//TODO: define the way of brith . there have to be a way yo make human of a woman :)
//
Woman(boolean birth)
{
if (birth)
{
int sexProbability= (int)Math.random()*1000;
if (sexProbability <500)> thisIsWhatIThinkOfYou;
return thisIsWhatIThinkOfYou;
}
private void Please()
{
pleasness=pleasness+((int)Math.random()*1000);
}
}

No comments: