Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace animal
- {
- class Program
- {
- static void Main(string[] args)
- {
- string animal = Console.ReadLine();
- switch (animal)
- {
- case "dog":
- Console.WriteLine("mammal");
- break;
- case "crocodile":
- case "tortoise":
- case "snake":
- Console.WriteLine("reptile");
- break;
- default:
- Console.WriteLine("unknown");
- break;
- }
- }
- }
- }
Add Comment
Please, Sign In to add comment