If the player spells a ten or more letter word, they should receive a 200 point bonus

From TRCCompSci - AQA Computer Science
Revision as of 12:46, 14 November 2017 by Robbie Rotten (talk | contribs)
Jump to: navigation, search
if (Word.Length > 10)
{
  score = score + 200;
}