kiki • 12天前
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;
评论:
请先登录,才能进行评论