【淼】Merry Xmas
  • 板块灌水区
  • 楼主Remarks
  • 当前回复14
  • 已保存回复14
  • 发布时间2021/12/24 23:14
  • 上次更新2023/10/28 13:44:37
查看原帖
【淼】Merry Xmas
321529
Remarks楼主2021/12/24 23:14

把这段代码复制到洛谷IDE,你会得到一棵圣诞树

别较真代码了都是瞎写的

                     #include<cstdio>
                    #include<iostream>   
                   using namespace std;
              const   int    mod=998244353;
           void Min(int& x,int y){x=min(x,y);}
           void Max(int& x,int y){x=max(x,y);}
                     inline int read(){
	          int x=0,f=1;char ch=getchar();
     while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();}
while(ch>='0'&&ch<='9'){x=(x<<3)+(x<<1)+(ch^48);ch=getchar();}
	                  return x*f;}
                       int main(){
	               cout<<"Merry Xmas";
	                   return 0;}
2021/12/24 23:14
加载中...