WHAT DO DO?

#include<iostream.h>
int main()
{
cout<<"SEATING ARRAGEMENT";
cout<<" /\ " <<endl;
cout<<" /--\ "<<endl;
cout<<" /----\ "<<endl;
cout<<" /------\ "<<endl;
cout<<" /--------\ "<<endl;
cout<<" / \ "<<endl;
cout<<" / \ "<<endl;
cout<<" / \ "<<endl;
cout<<"/ \ "<<endl;
cout<<" / \ "<<endl;
cout<<" / \ "<<endl;
cout<<" / \ "<<endl;
cout<<"/ \ "<<endl;
cout<<"| | "<<endl;
cout<<"| | "<<endl;
cout<<"| | "<<endl;
cout<<"| | "<<endl;
cout<<
system("pause");
return 0;
}

This the code for the airline structure on c++ but the output is not the desired one. help.
there are spaces between them.
Last edited on
Please put your code in code tags. Highlight the code and then click the <> button on the right of the edit window.

What is the desired output of this code?
Topic archived. No new replies allowed.