-
Notifications
You must be signed in to change notification settings - Fork 0
/
488.cpp
69 lines (62 loc) · 1.13 KB
/
488.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#include<iostream>
using namespace std;
int main()
{
int T,a,f,i,m,k;
cin>>T;
while(T--)
{
cin>>a>>f;
while(f--)
{
for(i=1;i<=a;i++)
{
for(k=0;k<i;k++)
{
cout<<i;
}
cout<<endl;
}
k=i-1;
for(i=k-1;i>0;i--)
{
for(m=0;m<i;m++)
cout<<i;
cout<<endl;
}
if(T==0&&f==0)
break;
cout<<endl;
}
}
return 0;
}
/*while(T--)
{
cin>>a>>f;
for(i=1;i<=a;i++)
{
for(k=0;k<i;k++)
{
arr[i-1][k]=i+48;
}
}
k=i-1;
for(i=k-1;i>0;i--)
{
for(m=0;m<i;m++)
arr[k][m]=i+48;
k++;
}
while(f--)
{
for(i=0;i<(2*a)-1;i++)
{
cout<<arr[i];
cout<<endl;
}
cout<<endl;
}
if(T-1>0)
cout<<endl;
*/