mirror of
https://github.com/Kiritow/OJ-Problems-Source.git
synced 2024-03-22 13:11:29 +08:00
Create 1292.cpp
This commit is contained in:
parent
24174b1333
commit
c33502ce4e
59
QUSTOJ/1292.cpp
Normal file
59
QUSTOJ/1292.cpp
Normal file
|
@ -0,0 +1,59 @@
|
|||
#include <cstdio>
|
||||
#include <cstdlib>
|
||||
#include <cstring>
|
||||
using namespace std;
|
||||
|
||||
void draw(int c)
|
||||
{
|
||||
for(int L=1;L<=c;L++)
|
||||
{
|
||||
for(int i=0;i<(c-L);i++)
|
||||
{
|
||||
printf(" ");
|
||||
}
|
||||
printf("/");
|
||||
for(int i=0;i<2*L-2;i++)
|
||||
{
|
||||
printf(" ");
|
||||
}
|
||||
printf("\\");
|
||||
for(int i=0;i<(c+(c-L)*2);i++)
|
||||
{
|
||||
printf(" ");
|
||||
}
|
||||
printf("/");
|
||||
for(int i=0;i<2*L-2;i++)
|
||||
{
|
||||
printf(" ");
|
||||
}
|
||||
printf("\\");
|
||||
printf("\n");
|
||||
}
|
||||
for(int i=0;i<c-1;i++)
|
||||
{
|
||||
printf("\n");
|
||||
}
|
||||
for(int i=0;i<2*c;i++)
|
||||
{
|
||||
printf(" ");
|
||||
}
|
||||
for(int i=0;i<c;i++)
|
||||
{
|
||||
printf("_");
|
||||
}
|
||||
printf("\n");
|
||||
}
|
||||
|
||||
int main()
|
||||
{
|
||||
int t;
|
||||
scanf("%d",&t);
|
||||
while(t--)
|
||||
{
|
||||
int n;
|
||||
scanf("%d",&n);
|
||||
draw(n);
|
||||
printf("\n");
|
||||
}
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user