Switch Case

This exercise wants you to practice the switch-case construct.
  1. Consider we have 3 car companies: BMW, Ford and Peugeot.
  2. When a user inputs the company name "BMW", show "German car".
  3. When a user inputs "Ford", show "American car".
  4. When a user inputs "Peugeot", show "French car".
  5. Add a default case where the text value is "Unknown car name".

Example: BMW

Example: Volvo