cout<<"This program will output a parallelogram"<<endl<<endl;
cout<<"How long do you want each side to be?"<<endl;
cin>>space;
cout<<"Please enter the character you want it to be made of: "<<endl;
cin>>c;
I have to do the rest using a while or dowhile loop which is what is throwing me off. Everything i have tried so far ends up turning into an infinite loop and causes my computer to freeze.