新城已无旧少年


私信TA

用户名:s573877411

访问量:19792

签 名:

人类的悲喜并不相通,我只是觉得他们吵闹.

等  级
排  名 195
经  验 6624
参赛次数 1
文章发表 19
年  龄 20
在职情况 学生
学  校 西安工程大学
专  业 大数据

  自我简介:

静,不是外在无声,而是内心无争

#include<stdio.h>
#define N 100
void f(int a,int b)
{
	int m=0;
	char P[N][N];
	for(int i=0;i<a;i++)       //1和b// 
	{
		for(int j=0;j<a;j++)
		{
			if(i==j||i+j==a-1)
			{
			    P[i][j]='X';	
			}else{
				P[i][j]=' ';
			}
		}
	}
	int flag=b;
	while(flag--)
	{
		if(flag==b-1)
		{
			for(int k=0;k<a;k++)
			{
				puts(P[k]);
			}
		}else{
			for(int l=1;l<a;l++)
			{
				puts(P[l]);
			}
		}
	}
}
int main()
{
	int n,a,b;
	scanf("%d",&n);
	while(n--)
	{
		scanf("%d%d",&a,&b);
		f(a,b);
		printf("\n");
	}
	return 0;
}


 

0.0分

1 人评分

  评论区

  • «
  • »