Cây thông dấu sao 2

Xem PDF



Tác giả:
Dạng bài
Ngôn ngữ cho phép
C++, Clang, Clang++, Cobol, D, Groovy, Haskell, JS, Lua, Node JS, ObjectiveC, Prolog, Python, Scala
Điểm: 100 (p) Thời gian: 1.0s Bộ nhớ: 256M Input: bàn phím Output: màn hình

In ra hình vẽ sau:

Output

     *    
    * *
   *   *
  *     *
 *       *
***********
     *
     *
     *

Bình luận


  • 2
    nhatbao09hht    8:25 p.m. 4 Tháng 11, 2023
    #include <iostream>
    using namespace std;
    int main()
    {
        for (int i = 1; i <= 6; i++) {
            for (int j = 1; j <= 11; j++)
                if (i == 6 || i + j == 7 || i - j == -5)
                    cout << "*";
                else
                    cout << " ";
            cout << endl;
        }
        for (int i = 1; i <= 3; i++) {
            for (int j = 1; j <= 6; j++)
                if (j == 6)
                    cout << "*";
                else
                    cout << " ";
            cout << endl;
        }
        return 0;
    }
    

    • 0
      kietlqt    9:12 a.m. 2 Tháng 8, 2024

      Sao của bạn dài thế của mình như vầy :

      #include<bits/stdc++.h>
      using namespace std;
      int main() {
          std::cout << "     *"<< std::endl;
          std::cout << "    * *" << std::endl;
          std::cout << "   *   *" << std::endl;
          std::cout << "  *     *"<< std::endl;
          std::cout << " *       *" << std::endl;
          std::cout << "***********" << std::endl;
          std::cout << "     *" << std::endl;
          std::cout << "     *" << std::endl;
          std::cout << "     *" << std::endl;
      }
      


      • 0
        lehongduc    1:05 p.m. 18 Tháng 8, 2024

        ng ta code sạch ak bạn 🙂

      12 bình luận nữa