包对,不对我吃

kiki  •  12天前


include

using namespace std;

void f(int n) {

for (int i = 1; i <= n; ++i) {
	for (int j = 1; j <= i; ++j) {
		cout << "*";
	}
	cout << endl;
}

}

int main() {

int n;
cin >> n;
f(n);

return 0;

}


评论:

请先登录,才能进行评论