aboutsummaryrefslogtreecommitdiff
path: root/week03/exercise02.cpp
blob: dd301e86782ed84469a70a6bf012f73cfbe58a55 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include <iostream>

int main() {
	int x;
	std::cin >> x;
	for (int row = 0; row < x; row++) {
		for (int col = 0; col <= row; col++) {
			std::cout << '#';
		}
		std::cout << std::endl;
	}
}