2 条题解

  • 1
    @ 2023-4-14 19:49:59
    #include <iostream>
    using namespace std;
    int main()
    {
        int n;
        cin >> n;
        for(int i=1;i<=n;i++)
        {
            cout << " ";
            for(int j=1;j<=n;j++)
            {
                cout << " ";
                if(i+j==n+1)
                {
                    cout << 1 << " ";
                }
                else
                {
                    cout << 0 << " ";
                }
            }
            cout << endl;
        }
    }
    
    • -1
      @ 2024-2-18 17:21:05

      把上一题的循环变量改一下就行了

      #include <iostream>
      using namespace std;
      int main()
      {
          int n;
          cin >> n;
          for (int i = 1; i <= n; i++)
          {
              for (int j = 1; j <= n; j++)
              {
                  cout << "  ";
                  if (i == j)
                  {
                      cout << 1;
                  }
                  else
                  {
                      cout << 0;
                  }
                  if (j == n)
                  {
                      cout << endl;
                  }
              }
          }
          return 0;
      }
      
      • 1

      信息

      ID
      191
      时间
      1000ms
      内存
      16MiB
      难度
      3
      标签
      递交数
      120
      已通过
      67
      上传者