Kent以东首帅哥
新手上路
- 注册
- 2002-01-27
- 消息
- 10,443
- 荣誉分数
- 0
- 声望点数
- 0
#define AND &&
RESULT love(boy, girl)
{
if( boy.possess_house() AND boy.possess_house() )
{
boy.Set(Nothing);
return girl.marry(boy);
}
else if( girl.willing_to_wait() )
{
next_year:
for( day=1; day<=365; day++)
{
if( day == Valentines_Day )
if( boy.GiveGirl(rose) )
girl.feeling++;
else
girl.feeling--;
if( day == girl.birthday)
if( boy.GiveGirl(rose) )
girl.feeling++;
else
girl.feeling--;
boy.making_money(very_hard);
}
age++;
girl.feeling--;
if( boy.possess_house() AND boy.possess_car() )
{
boy.Set(Nothing);
return girl.marry(boy);
}
else if( boy.bank_deposit() > 100,000 OR girl.feeling > 8 )
goto next_year;
else
return girl.goto( another_boy);
}
return girl.goto( another_boy);
}
RESULT love(boy, girl)
{
if( boy.possess_house() AND boy.possess_house() )
{
boy.Set(Nothing);
return girl.marry(boy);
}
else if( girl.willing_to_wait() )
{
next_year:
for( day=1; day<=365; day++)
{
if( day == Valentines_Day )
if( boy.GiveGirl(rose) )
girl.feeling++;
else
girl.feeling--;
if( day == girl.birthday)
if( boy.GiveGirl(rose) )
girl.feeling++;
else
girl.feeling--;
boy.making_money(very_hard);
}
age++;
girl.feeling--;
if( boy.possess_house() AND boy.possess_car() )
{
boy.Set(Nothing);
return girl.marry(boy);
}
else if( boy.bank_deposit() > 100,000 OR girl.feeling > 8 )
goto next_year;
else
return girl.goto( another_boy);
}
return girl.goto( another_boy);
}