Difference between revisions of "SimulateWinter - AS 2017"

From TRCCompSci - AQA Computer Science
Jump to: navigation, search
(Created page with "==The Code== <syntaxhighlight lang=Csharp> </syntaxhighlight> ==Explanation==")
 
 
Line 2: Line 2:
  
 
<syntaxhighlight lang=Csharp>
 
<syntaxhighlight lang=Csharp>
 
+
static void SimulateWinter(char[,] Field)
 +
{
 +
    for (int Row = 0; Row < FIELDLENGTH; Row++)
 +
    {
 +
        for (int Column = 0; Column < FIELDWIDTH; Column++)
 +
        {
 +
            if (Field[Row, Column] == PLANT)
 +
            {
 +
                Field[Row, Column] = SOIL;
 +
            }
 +
        }
 +
    }
 +
}
 
</syntaxhighlight>
 
</syntaxhighlight>
  
 
==Explanation==
 
==Explanation==

Latest revision as of 10:36, 3 March 2017

The Code

static void SimulateWinter(char[,] Field)
{
    for (int Row = 0; Row < FIELDLENGTH; Row++)
    {
        for (int Column = 0; Column < FIELDWIDTH; Column++)
        {
            if (Field[Row, Column] == PLANT)
            {
                Field[Row, Column] = SOIL;
            }
        }
    }
}

Explanation