Difference between revisions of "Switch"

esse quam videri
Jump to: navigation, search
(Example)
Line 19: Line 19:
 
         break;
 
         break;
  
case "S:"
+
    case "S:"
 
         player.moveSouth();
 
         player.moveSouth();
 
         break;
 
         break;
  
case "E":
+
    case "E":
 
         player.moveEast();
 
         player.moveEast();
 
         break;
 
         break;
  
case "W":
+
    case "W":
 
         player.moveWest();
 
         player.moveWest();
 
         break;
 
         break;
Line 34: Line 34:
  
 
</syntaxhighlight>
 
</syntaxhighlight>
 
 
  
 
=Resources=
 
=Resources=

Revision as of 18:11, 21 August 2019

Definition

Relevance

Example

Below is an example of a switch for an adventure game

console.WriteLine("You awake and find yourself at an intersection, which path will you take?");
console.WriteLine("Use N, S, E, or W for North, South, East, or West");

choice = console.ReadLine();

switch(choice)
{
    case "N":
        player.moveNorth();
        break;

    case "S:"
        player.moveSouth();
        break;

    case "E":
        player.moveEast();
        break;

    case "W":
        player.moveWest();
        break;
}

Resources

See also

Notes

External Links