2637 - 打印图形

通过次数

0

提交次数

0

时间限制 : 1 秒 内存限制 : 128 MB

    1

  121

 12321

1234321

题目输入

题目输出

    1

  121

 12321

1234321

输入/输出样例

输入格式

no input needed

输出格式

   1
  121
 12321
1234321

C++解答

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