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

  • njsjfhdaoijdafifrjsirj 10:23 a.m. 5 Tháng 1, 2025

    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;
    }

    • 13 bình luận nữa