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
(Created page with "<syntax highlight lang = csharp> if (Word.Length > 10) { score = score + 200; } </syntax highlight>")
(No difference)

Revision as of 12:42, 14 November 2017

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

 score = score + 200;

} </syntax highlight>