Untitled

 avatar
unknown
plain_text
2 years ago
188 B
6
Indexable
int height(7), width(7);
	char symbol('*');

	for (size_t i = 0; i < width; i++)
	{
		for (size_t t = 0; t <= i; t++)
		{
			std::cout << symbol;
		}
		std::cout << std::endl;
	}
Editor is loading...