Advertisement
Spocoman

Cat Food Meow

Jan 9th, 2022
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.07 KB | None | 0 0
  1. using System;
  2.  
  3. namespace CatFoodMeow
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int n = int.Parse(Console.ReadLine());
  10.             Console.Write($"{new string('.', n - 1)}|");
  11.  
  12.             for (int i = 1; i <= n; i++)
  13.             {
  14.                 Console.Write("\\/");
  15.             }
  16.  
  17.             Console.WriteLine($"|{new string('.', n - 1)}");
  18.             Console.Write($"{new string('.', n - 1)}|");
  19.  
  20.             for (int i = 1; i <= 2 * n; i++)
  21.             {
  22.                 Console.Write("~");
  23.             }
  24.  
  25.             Console.WriteLine($"|{new string('.', n - 1)}");
  26.  
  27.             for (int i = 1; i <= n; i++)
  28.             {
  29.                 Console.Write($"{new string('.', n - 1)}|{new string(' ', i - 1)}");
  30.                 for (int j = n; j >= i; j--)
  31.                 {
  32.                     Console.Write("{}");
  33.                 }
  34.                 Console.WriteLine($"{new string(' ', i - 1)}|{new string('.', n - 1)}");
  35.             }
  36.            
  37.             Console.WriteLine("{0}{1}{2}MEOW{2}{1}{0}", new string('.', n - 1), '|', new string(' ', n - 2));
  38.             Console.WriteLine("{0}{1}{2}FOOD{2}{1}{0}", new string('.', n - 1), '|', new string(' ', n - 2));
  39.  
  40.             for (int i = 1; i <= n; i++)
  41.             {
  42.                 Console.Write($"{new string('.', n - 1)}|{new string(' ', n - i)}");
  43.                 for (int j = 1; j <= i; j++)
  44.                 {
  45.                     Console.Write("{}");
  46.                 }
  47.                 Console.WriteLine($"{new string(' ', n - i)}|{new string('.', n - 1)}");
  48.             }
  49.  
  50.             Console.Write($"{new string('.', n - 1)}|");
  51.  
  52.             for (int i = 1; i <= 2 * n; i++)
  53.             {
  54.                 Console.Write("~");
  55.             }
  56.  
  57.             Console.WriteLine($"|{new string('.', n - 1)}");
  58.             Console.Write($"{new string('.', n - 1)}|");
  59.  
  60.             for (int i = 1; i <= n; i++)
  61.             {
  62.                 Console.Write("\\/");
  63.             }
  64.  
  65.             Console.Write($"|{new string('.', n - 1)}");
  66.         }
  67.     }
  68. }
  69.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement