daily pastebin goal
41%
SHARE
TWEET

Untitled

a guest Jan 29th, 2018 49 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. using System;
  2.  
  3. namespace animals
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             var animal = Console.ReadLine();
  10.  
  11.             if (animal == "dog") Console.WriteLine("mammal");
  12.  
  13.             else if (animal == "crocodile" ||
  14.                      animal == "tortoise" ||
  15.                      animal == "snake") Console.WriteLine("reptile");
  16.  
  17.             else Console.WriteLine("unknown");
  18.  
  19.         }
  20.     }
  21. }
RAW Paste Data
Pastebin PRO WINTER Special!
Get 40% OFF Pastebin PRO accounts!
Top