蒟蒻求助
查看原帖
蒟蒻求助
162084
thomas_zjl楼主2020/8/15 09:22

为什么会错,检查不出来

#include <bits/stdc++.h>
using namespace std;
int main()
{
    int n;
    cin>>n;
    for(int i=0;i<=n;i++)
    {
    	for(int j=0;j<(n-i)*2;j++)
    	{
    		cout<<' '; 
		}
		for(int j=0;j<=i;j++)
		{
			cout<<j<<' ';	
		} 
		for(int j=i-1;j>=0;j--)
		{
			cout<<j<<' ';	
		} 
		cout<<endl;
	}
	for(int i=n-1;i>=0;i--)
	{
		for(int j=0;j<(n-i)*2;j++)
    	{
    		cout<<' '; 
		}
		for(int j=0;j<=i;j++)
		{
			cout<<j<<' ';	
		} 
		for(int j=i-1;j>=0;j--)
		{
			cout<<j<<' ';	
		} 
		cout<<endl;	
	} 
}
2020/8/15 09:22
加载中...