1 #include<iostream> 2 using namespace std; 3 int main(){ 4 for(int a=1;a<5;a++){ 5 for(int b=1;b<=2*a-1;b++){ 6 cout<<"*"; 7 } 8 cout<<' '; 9 } 10 11 for(int a=1;a<4;a++){ 12 for(int b=1;b<=-2*a+7;b++){ 13 cout<<"*"; 14 } 15 cout<<' ';} 16 } 17 18 19 #include<iostream> 20 using namespace std; 21 int main(){ 22 cout<<'*'<<' '; 23 cout<<'*'<<'*'<<'*'<<' '; 24 cout<<'*'<<'*'<<'*'<<'*'<<'*'<<' '; 25 cout<<'*'<<'*'<<'*'<<'*'<<'*'<<'*'<<'*'<<' '; 26 cout<<'*'<<'*'<<'*'<<'*'<<'*'<<' '; 27 cout<<'*'<<'*'<<'*'<<' '; 28 cout<<'*'<<' '; 29 }