Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- 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;
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment