Superman

class Clark Kent extends Superman
{

String disguise = "glasses";
boolean save_lois_lane = false;
boolean obvious_disguise = true;
int lois_common_sense_level = 10;

if (save_lois_lane == true)
{
--lois_common_sense_level;
obvious_disguse = false;
}
else
{
lois_common_sense_level--;
}

}
Vote up this code1
  • akmur

    what does this do? –lois_common_sense_level;