Advertisement
yepp

Untitled

Nov 10th, 2013
338
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.09 KB | None | 0 0
  1. #include <iostream>
  2. #include <vector>
  3. #include <cmath>
  4.  
  5. using namespace std;
  6.  
  7. int main()
  8. {
  9.     const int sor = 99;
  10.     const int oszlop = 71;
  11.     bool mat[sor][oszlop] = {false, false};
  12.     double m = 0.36;
  13.     for (int i = 1; i < 54; i++) {
  14.         int halso = ceil(m*(i+2)-2);
  15.         if (i < 7) {
  16.             halso = 1;
  17.         }
  18.         int hfelso = ceil(m*(i-14)+23-0.1+4);
  19.         if (i > 47) {
  20.             hfelso = 40;
  21.         }
  22.         for (int j = halso; j < hfelso; j++) {
  23.             mat[j-1][62-i] = true;
  24.         }
  25.     }
  26.     double r = 10.625; //85/8
  27.     for (int i = -10; i <= 10; i++) {
  28.         int hfelso = floor((sqrt(pow(r,2)-pow(i,2))-1)*1);
  29.         for (int j = 9-hfelso; j <= 9; j++) {
  30.             mat[28+i][j] = true;
  31.             mat[10+i][61+(9-j)] = true;
  32.         }
  33.     }
  34.     for (auto i = 0; i < 45; i++) {
  35.         for (auto j = 0; j < oszlop; j++) {
  36.             if (mat[i][j]) {
  37.                 cout << "#";
  38.             } else {
  39.                 cout << " ";
  40.             }
  41.         }
  42.         cout << endl;
  43.     }
  44.     cout<<"lolol";
  45.     return 0;
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement