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:42, 14 November 2017 by Robbie Rotten (talk | contribs) (Created page with "<syntax highlight lang = csharp> if (Word.Length > 10) { score = score + 200; } </syntax highlight>")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

<syntax highlight lang = csharp> if (Word.Length > 10) {

 score = score + 200;

} </syntax highlight>