Untitled

 avatar
unknown
plain_text
3 years ago
361 B
3
Indexable
#include <iostream>

using namespace std;

int main(int argc, char* argv[])
{
	cout << "\t   House:\n\n";

	cout << "\t     /\\ \n";
	cout << "\t    /  \\ \n";
	cout << "\t   /    \\ \n";
	cout << "\t  /------\\ \n";
	cout << "\t / |    | \\ \n";
	cout << "\t   |    | \n";
	cout << "\t   |    | \n";
	cout << "\t   |____| \n";

	system("PAUSE");
	return 0;
}