Simulate a conveyor belt : Switch « Language Basics « C# / C Sharp






Simulate a conveyor belt

Simulate a conveyor belt
/*
C#: The Complete Reference 
by Herbert Schildt 

Publisher: Osborne/McGraw-Hill (March 8, 2002)
ISBN: 0072134852
*/
// Simulate a conveyor belt 
 
using System; 
 
class ConveyorControl { 
  // enumerate the conveyor commands 
  public enum action { start, stop, forward, reverse }; 
 
  public void conveyor(action com) { 
    switch(com) { 
      case action.start: 
        Console.WriteLine("Starting conveyor."); 
        break; 
      case action.stop: 
        Console.WriteLine("Stopping conveyor."); 
        break; 
      case action.forward: 
        Console.WriteLine("Moving forward."); 
        break; 
      case action.reverse: 
        Console.WriteLine("Moving backward."); 
        break; 
    } 
  } 
} 
 
public class ConveyorDemo { 
  public static void Main() { 
    ConveyorControl c = new ConveyorControl(); 
 
    c.conveyor(ConveyorControl.action.start); 
    c.conveyor(ConveyorControl.action.forward); 
    c.conveyor(ConveyorControl.action.reverse); 
    c.conveyor(ConveyorControl.action.stop); 
     
  } 
}

           
       








Related examples in the same category

1.Switch for int type
2.Demonstrate the switchDemonstrate the switch
3.Use a char to control the switchUse a char to control the switch
4.Empty cases can fall throughEmpty cases can fall through
5.Illustrates the use of the switch statementIllustrates the use of the switch statement
6.Illustrates the use of the switch statement to compare string valuesIllustrates the use of the switch statement to compare string values
7.Switch statement containing a branch with no statements: causes a 'fall-through' to the next branchSwitch statement containing a branch with no statements: causes a 'fall-through' to the next branch
8.Switch ValuesSwitch Values
9.Switch With Default ValuesSwitch With Default Values
10.Switch Values Fall ThroughSwitch Values Fall Through
11.Switch based console menuSwitch based console menu