Advertisement
Spocoman

Cat Food Meow

Sep 15th, 2023
777
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.78 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. string repeat(string s, int n) {
  6.     string result;
  7.     for (int i = 0; i < n; i++)
  8.         result += s;
  9.  
  10.     return result;
  11. }
  12.  
  13. int main() {
  14.  
  15.     int n;
  16.     cin >> n;
  17.  
  18.     printf("%s|", repeat(".", n - 1).c_str());
  19.  
  20.     for (int i = 0; i < n; i++){
  21.         cout << "\\/";
  22.     }
  23.  
  24.     printf("|%s\n", repeat(".", n - 1).c_str());
  25.     printf("%s|", repeat(".", n - 1).c_str());
  26.  
  27.     for (int i = 1; i <= 2 * n; i++){
  28.         cout << "~";
  29.     }
  30.  
  31.     printf("|%s\n", repeat(".", n - 1).c_str());
  32.  
  33.     for (int i = 1; i <= n; i++) {
  34.         printf("%s|%s", repeat(".", n - 1).c_str(), repeat(" ", i - 1).c_str());
  35.  
  36.         for (int j = n; j >= i; j--){
  37.             cout << "{}";
  38.         }
  39.         printf("%s|%s\n", repeat(" ", i - 1).c_str(), repeat(".", n - 1).c_str());
  40.     }
  41.  
  42.     printf("%s%s%sMEOW%s%s%s\n", repeat(".", n - 1).c_str(), "|", repeat(" ", n - 2).c_str(), repeat(" ", n - 2).c_str(), "|", repeat(".", n - 1).c_str());
  43.     printf("%s%s%sFOOD%s%s%s\n", repeat(".", n - 1).c_str(), "|", repeat(" ", n - 2).c_str(), repeat(" ", n - 2).c_str(), "|", repeat(".", n - 1).c_str());
  44.  
  45.     for (int i = 1; i <= n; i++) {
  46.         printf("%s|%s", repeat(".", n - 1).c_str(), repeat(" ", n - i).c_str());
  47.  
  48.         for (int j = 1; j <= i; j++) {
  49.             cout << "{}";
  50.         }
  51.         printf("%s|%s\n", repeat(" ", n - i).c_str(), repeat(".", n - 1).c_str());
  52.     }
  53.  
  54.     printf("%s|", repeat(".", n - 1).c_str());
  55.  
  56.     for (int i = 1; i <= 2 * n; i++) {
  57.         cout << "~";
  58.     }
  59.  
  60.     printf("|%s\n", repeat(".", n - 1).c_str());
  61.     printf("%s|", repeat(".", n - 1).c_str());
  62.  
  63.     for (int i = 0; i < n; i++) {
  64.         cout << "\\/";
  65.     }
  66.  
  67.     printf("|%s", repeat(".", n - 1).c_str());
  68.  
  69.     return 0;
  70. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement