Untitled
unknown
plain_text
3 years ago
188 B
9
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...