it suppose to look like this
Trapezoid with height 4, base1 3 and base2 9
EEE
EEEEE
EEEEEEE
EEEEEEEEE
but nothing is happening this is my code
else if (letter =='Q' || letter =='q')
{
cin>>hei>>wei>>draw;
base = hei*2;
cout<<"Trapezoid with height "<<hei<<"base1 "<<wei<<"and base2 "<<base;
cout<<endl;
for(i=1;i<hei;i++)
{
cout<<" ";
}
for (j=1;j<0;j++)
{
cout<<draw;
}
cout<<endl;
}