#27495: CPP


11030067@mail.hpsh.tp.edu.tw (和平110級鄧雨珊)

學校 : 臺北市立和平高級中學
編號 : 163096
來源 : [61.64.210.174]
最後登入時間 :
2022-10-23 16:54:59
c013. 00488 - Triangle Wave -- UVa488 | From: [27.105.55.178] | 發表日期 : 2021-10-10 10:26

int main(){
int n;
cin >> n;
while (n--){
int a, f;
cin >> a >> f;
for (int i=0; i<f; i++){
for (int j=1; j<=a; j++){
for (int k=1; k<=j; k++){
cout << j;
}
cout <<endl;
}
for (int j=a-1; j>0; j--){
for (int k=1; k<=j; k++){
cout << j;
}
cout <<endl;
}
cout <<endl;
}
}
}
 
ZeroJudge Forum