2 条题解

  • 1
    @ 2025-9-28 21:52:08

    只要你会cout和endl或"\n"就能做满分:

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

    注意!!!一定要复制输出的结果,空格不对也会WA!!

    • -1
      @ 2025-7-7 10:59:57

      有是一道水题

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

      信息

      ID
      78
      时间
      1000ms
      内存
      256MiB
      难度
      1
      标签
      递交数
      497
      已通过
      80
      上传者