Difference between revisions of "If the player spells a ten or more letter word, they should receive a 200 point bonus"

From TRCCompSci - AQA Computer Science
Jump to: navigation, search
Line 6: Line 6:
 
}
 
}
 
</syntaxhighlight>
 
</syntaxhighlight>
 +
oui

Revision as of 12:49, 14 November 2017

if (Word.Length > 10)
{
  score = score + 200;
}

oui