Run ID:111982

提交时间:2025-03-08 11:42:38

#include<bits/stdc++.h> using namespace std; int main() { int c=1; int b; cin>>b; for(int i=1;i<=b;i++){ for (int e = 1; e <= c; e++) { cout << "*"; } cout<<endl; c++; } return 0 ; }