#include <iostream>
using namespace std;
int main(){
int h,n,i;
while(cin>>h){
if(h==0)break;
for(int i=1;i<=h;i++){
for(n=h;n>=1;n--){
if(n>i)cout<<"_";
else cout<<"+";
}
cout<<endl;}
return 0;
}}
= =不知道哪裡錯了
可以幫幫我嗎?
資測點2.3都過了
就資測點1會輸出短少
結果就是NA